C#-this.Closing += new CancelEventHandler(FormMain_Closing);
this.Closing += new CancelEventHandler(FormMain_Closing);这句是什么意思呢?就这句不懂。
public FormMain()
{
InitializeComponent();
this.Closing += new CancelEventHandler(FormMain_Closing); //这句不懂啊
}
/// <summary>
/// 关闭主窗口前的处理
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void FormMain_Closing(object sender, CancelEventArgs e)
{
DialogResult dr = MessageBox.Show("确定退出系统吗?", "退出", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2);
if (dr == DialogResult.OK)
{
//
//在这里请处理相关事务,比如保存等
//
Application.Exit();
}
else
{
e.Cancel = true;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
动态给 this.Closing绑定事件
给当前窗体添加Closing事件,事件调用FormMain窗体的Closing事件处理程序
+= new CancelEventHandler(FormMain_Closing);是一个委托事件,当取消的时候发生,