将事件添加到动态添加的控件

时间:2010-11-27 10:05:10

标签: c#

我正在开发winform app。我添加了一些动态控件,例如。 Button现在我想向该创建的按钮添加一个事件,我该如何执行此操作?有人可以向我推荐C#本书,其中涵盖了winform中的所有主题吗?感谢。

2 个答案:

答案 0 :(得分:21)

// create some dynamic button
Button b = new Button();
// assign some event to it
b.Click += (sender, e) => 
{
    MessageBox.Show("the button was clicked");
};
// add the button to the form
Controls.Add(b);

答案 1 :(得分:14)

我完全同意Darin的回答,这是添加动态事件的另一种语法

private void Form1_Load(object sender, EventArgs e)
{
    Button b = new Button();
    b.Click += new EventHandler(ShowMessage);
    Controls.Add(b);
}

private void ShowMessage(object sender,EventArgs e)
{
    MessageBox.Show("Message");
}