winform程序关闭界面时弹出提示框
2021-07-03 04:06
标签:ons tar 关闭窗口 icon ESS log ogr 丢失 result winform程序关闭界面时弹出提示框 标签:ons tar 关闭窗口 icon ESS log ogr 丢失 result 原文地址:https://www.cnblogs.com/asdyzh/p/9900020.htmlvoid Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (MessageBox.Show(
"窗口关闭后,数据即将丢失!是否现在关闭窗口",
"提示",
MessageBoxButtons.OKCancel,
MessageBoxIcon.Question) != DialogResult.OK)
{
e.Cancel = true;
return;
}
}
文章标题:winform程序关闭界面时弹出提示框
文章链接:http://soscw.com/index.php/essay/101098.html