在不同的事件处理程序中以编程方式添加控件?

时间:2015-01-09 00:19:04

标签: c# button textbox event-handling controls

好吧,所以我有一个程序,我有一些像这样添加的文本框:

TextBox textbox = new TextBox();
textbox.Location = new Point(100, 100);
this.Controls.Add(textbox)

在此之后,我创建了一个按钮:

Button button = new Button();
button.Text = String.Format("Calculate");
button.Location = new Point(70, 70);
this.Controls.Add(button);

因为我要添加它,我需要创建自己的事件处理程序:

button.Click += new EventHandler(button_Click);

我遇到的问题是引用我在事件处理程序中创建的文本框。

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:0)

使用Name属性进行查找:

textbox.Name = "myTextBox";

void button_Click(object sender, EventArgs e) {
  if (this.Controls.ContainsKey("myTextBox")) {
    TextBox tb = this.Controls["myTextBox"] as TextBox;
    MessageBox.Show(tb.Text);
  }
}

答案 1 :(得分:0)

只需将类级引用存储到文本框中,以便可以在按钮事件处理程序中引用它。

答案 2 :(得分:0)

另一种选择是在Button的Tag属性中存储对TextBox的引用:

    button.Tag = textbox;

然后您可以在按钮单击处理程序中检索:

    void button_Click(object sender, EventArgs e)
    {
        TextBox tb = (TextBox)((Button)sender).Tag;
        MessageBox.Show(tb.Text);
    }