我想让功能发挥作用:
int a = Convert.ToInt32(tb [0] .Text);
点击后:
button1的
如何在按钮1单击后更新文本框值?
//My Code
private void somefunction(){
TextBox[] tb = new TextBox[2];
for (int i = 0; i <= 1; i++)
{
tb[i] = new TextBox();
tb[i].Name = "textBox" + i;
tb[i].Location = new Point(50 * i, 10);
tb[i].Size = new System.Drawing.Size(20, 15);
this.Controls.Add(tb[i]);
}
//this code is static, how to make it update on click?
int a, b;
a = Convert.ToInt32(tb[0].Text);
b = Convert.ToInt32(tb[1].Text);
}
// click event
private void button1_Click(object sender, EventArgs e){}
答案 0 :(得分:0)
public partial class Form1 : Form
{
TextBox[] tb;
public Form1()
{
InitializeComponent();
tb = new TextBox[2];
//...
}
private void button1_Click(object sender, EventArgs e)
{
int a = Convert.ToInt32(tb[0].Text);
}
}