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