会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
码农一枚
博客园
首页
新随笔
联系
管理
订阅
有关WinForm主窗体关闭的处理
Code
1
private
void
FrmMain_FormClosing(
object
sender, FormClosingEventArgs e)
2
{
3
{
4
if
(MessageBox.Show(
"
您确定要退出系统吗?
"
5
,
"
询问
"
6
, MessageBoxButtons.YesNo
7
, MessageBoxIcon.Question
8
, MessageBoxDefaultButton.Button2)
==
DialogResult.No)
9
e.Cancel
=
true
;
10
}
11
}
刚刚在CSDN上看到的一个常用方法,收藏下!
posted @
2009-10-11 15:48
冯翔
阅读(
571
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告