0
我正在開發一個應用程序,該應用程序獲取Mobile no。通過多個文本框,每個文本框1個數字,我已經通過cancatination成功插入了值,現在的問題是如何將這些值返回到多個文本框每個文本框1個數字?如何將值從多個文本框插入到多個文本框中將值返回到單個值
private[enter image description here][1] void button2_C[enter image description here][1]lick(object sender, EventArgs e)
{
string btn2 = ""+textBox1.Text+ textBox2.Text + textBox3.Text + textBox4.Text + textBox5.Text + textBox6.Text + textBox7.Text + textBox8.Text + textBox9.Text + textBox10.Text + textBox11.Text + "";
label1.Text = btn2;
}
private void button1_Click(object sender, EventArgs e)
{
//??
}
第一次學會正確命名您的控件。它會幫助你,尤其是你尋求幫助的人。 * button2 *或* textBox9 *是不可理解的,雖然在這裏並不重要。至於問題,如果方塊都有一個字符,你可以通過字符串並將每個字符放到各自的方框中。子串可能會有所幫助。 –
哇...感謝很多人,你讓我的生活變得輕鬆...謝謝你 –