Winform中使用代码编写Button按钮的点击事件

场景

一般在进行Winform窗体开发时都会拖拽一个Button,然后双击进入Button按钮的点击事件中,进行

点击事件的编写。

如果窗体上事先没有Button按钮,是在代码中生成的Button按钮,如何编写它的点击事件。

实现

SimpleButton confirmbButton = new SimpleButton();
confirmbButton.Click +=confirmbButton_Click; private void confirmbButton_Click(object sender, EventArgs e)
{
MessageBox.Show("AAA");
}

效果

Winform中使用代码编写Button按钮的点击事件

Winform中使用代码编写Button按钮的点击事件

上一篇:控制WinForm中Tab键的跳转


下一篇:MFC非模态对话框中屏蔽ESC键