WinForm 按钮事件处理程序(动态)

本文关键字:动态 程序 按钮 事件处理 WinForm | 更新日期: 2023-09-27 18:31:01

我想区分每个事件处理程序。

(我在下面的代码中只有一个。我的意思是动态处理程序将是最好的,但是,任何类型的解决方法也可以。

请帮助我。

谢谢!

    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() );
    }

WinForm 按钮事件处理程序(动态)

一个事件处理程序就足够了,您可以将发送者强制转换为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);
}

此外,要布局按钮,您可以使用 FlowLayoutPanelTableLayoutPanel .