if (MessageBox.Show("请您确认是否退出(Y/N)", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
{
try
{
this.Dispose();
this.Close();
}
catch (System.Exception error)
{//WinIO卸载失败异常
MessageBox.Show(error.Message, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
}
else
{
return;
}
相关文章
- 08-27python – 关闭TraitsUI窗口而不单击“确定”
- 08-27用C#调用Windows API向指定窗口发送按键消息
- 08-27winform渐变窗口显示/关闭
- 08-27关闭MyEclipse 代码文件上方路径显示
- 08-27C#和.NET 3.5-如何使用具有隐藏窗口的不同凭据启动进程,并能够捕获标准输出和退出代码?
- 08-27pycharm中代码窗口如何分成左右或者上下双栏
- 08-27bootstrap dialog自行控制窗口的关闭
- 08-27Sublime Text 3运行PyQt5代码不能显示窗口
- 08-27c#中将WM_CLOSE消息发送到没有窗口的进程的方法
- 08-27MFC实现窗口关闭为最小化托盘