[WinForm]移除控件某个事件
2020-12-13 05:10
标签:winform style color 使用 os width 关键代码: 使用代码: [WinForm]移除控件某个事件,搜素材,soscw.com [WinForm]移除控件某个事件 标签:winform style color 使用 os width 原文地址:http://www.cnblogs.com/Yan-Zhiwei/p/3858418.html ///
private void WinRemoveControlEventTest_Load(object sender, EventArgs e)
{
button1.RemoveControlEvent("EventClick");
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("button1_Click");
}