我想区分每个事件处理程序。
(我的代码中只有一个。我的意思是动态处理程序将是最好的,但任何类型的变通办法都会很好。)
请帮帮我。
谢谢!
List<Button> VuttonList = new List<Button>();
private void Form1_Load(object sender, EventArgs e)
{
Button Vutton;
int Kount = 10;
for (int i = 0; i < Kount ; i++)
{
Vutton = new Button();
Vutton.Text = ( i + 1 ).ToString() ;
Vutton.Location = new Point(10, 24 * ( i + 1 ) );
Controls.Add( Vutton );
Vutton.Click += new EventHandler(Kommon);
VuttonList.Add( Vutton );
}
}
private void Kommon(object sender, EventArgs e)
{
MessageBox.Show( sender.ToString() );
}
答案 0 :(得分:1)
一个事件处理程序就足够了,您可以将发件人强制转换为Button
,这样您就知道哪个按钮已被点击。您也可以在创建按钮时设置按钮的Name
属性,或者指定它们的Tag
属性并在以后使用它。
for (int i = 0; i < Kount ; i++)
{
Vutton = new Button();
//...set properties
//Also add Name:
Vutton.Name = string.Format("Vutton{0}", i);
//Also you can add Tag
Vutton.Tag = i;
Controls.Add( Vutton );
Vutton.Click += new EventHandler(Kommon);
//... other stuff
}
然后你可以这样使用按钮的属性:
private void Kommon(object sender, EventArgs e)
{
var button = sender as Button;
//You can use button.Name or (int)button.Tag and ...
MessageBox.Show(button.Name);
}
另外,为了布置按钮,您可以使用FlowLayoutPanel
或TableLayoutPanel
。