关闭窗体时提示 c# 关闭窗体时提示的小例子
人气:0想了解c# 关闭窗体时提示的小例子的相关内容吗,在本文为您仔细讲解关闭窗体时提示的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:关闭,窗体,提示,下面大家一起来学习吧。
复制代码 代码如下:
private void WorkflowConfigure_FormClosing(object sender, FormClosingEventArgs e)
{
DialogResult result = MessageBox.Show("此操作会丢弃您的当前设置,确定要继续?", "退出", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (DialogResult.Yes == result)
{
e.Cancel = false; // Cancel属性如果为true,表示取消该事件的执行。
}
else
{
e.Cancel = true;
}
}
加载全部内容