在C# WinForm中添加退出前确认功能,就要自行添加FormClosing事件。方法如下:[喝小酒的网摘]http://blog.hehehehehe.cn/a/17725.htm
在frmMain.Designer.cs中的InitializeComponent()添加:
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
在frmMain.cs中添加:
private void frmMain_FormClosing(object sender, FormClosingEventArgs e)
{
if (MessageBox.Show("你确定要退出?", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1) == DialogResult.Yes)
e.Cancel = false;
else
e.Cancel = true;
}
也可以在IDE中,在Form的事件中添加事件,系统会自动添加上部分代码。
this.button3.Image = Properties.Resources.tab_scan;
Bitmap bmp = (Bitmap)Properties.Resources.tab_update;
//this.button3.Image = Bitmap.FromFile("d:\tmp.bmp");
this.button3.Image = bmp.Clone(new System.Drawing.Rectangle(172*2, 0, 172, 38), button3.Image.PixelFormat);
C# 添加FormClosing事件
精选 转载文章标签 FormClosing 文章分类 .Net 后端开发
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C#:事件
C# 事件(Event)事件(Event) 基本上说是一个用户操作,如按键、点击、鼠标移动等等,或者是一些出现,如系统生成的通知。应用程序需要在事件发生
事件处理 日志文件 实例化 应用程序 故障排除