色偷偷偷久久伊人大杳蕉,色爽交视频免费观看,欧美扒开腿做爽爽爽a片,欧美孕交alscan巨交xxx,日日碰狠狠躁久久躁蜜桃
電子工程網(wǎng)
標(biāo)題:
C#下關(guān)閉窗口退出確認(rèn)代碼
[打印本頁]
作者:
hotpower
時間:
2009-4-3 00:04
標(biāo)題:
C#下關(guān)閉窗口退出確認(rèn)代碼
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{//捕捉窗體Close事件,關(guān)閉窗口時提示
if (MessageBox.Show("請您確認(rèn)是否退出(Y/N)", "系統(tǒng)提示", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
{
try
{
ShutdownWinIo();
}
catch (System.Exception error)
{//WinIO卸載失敗異常
MessageBox.Show(error.Message, "系統(tǒng)提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
e.Cancel = false;//允許退出系統(tǒng)
}
else
{
e.Cancel = true;//阻止退出系統(tǒng)
}
}
歡迎光臨 電子工程網(wǎng) (http://m.54549.cn/)
Powered by Discuz! X3.4