C#如何防止點(diǎn)擊窗口的關(guān)閉按鈕退出程序
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
在窗體的closing事件中,加入代碼:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
//最小化時(shí)禁止退出,必須點(diǎn)擊退出菜單退出
this.Hide();
this.notifyIcon.Visible = true;
e.Cancel = true;
return;
} 該文章在 2021/3/29 22:57:47 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |