-2

我想让功能工作:

int a = Convert.ToInt32(tb[0].Text);

我点击后:

按钮1

单击按钮 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){}
4

1 回答 1

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);
    }
}
于 2012-10-23T09:30:03.550 回答