關閉時代碼
if(MessageBox.Show("確定關閉系統嗎?","關閉確認",MessageBoxButtons.OKCancel,MessageBoxIcon.Question) == DialogResult.OK){
Application.Exit();
}
如果有多個地方要寫,可以把上面寫成
/// <summary>
/// 關閉系統
/// </summary>
public void ExitApp(){
if(MessageBox.Show("確定關閉系統嗎?","關閉確認",MessageBoxButtons.OKCancel,MessageBoxIcon.Question) == DialogResult.OK){
Application.Exit();
}
}
在其它地方只要調用this.ExitApp();就可以了。