c#怎么设置关闭窗口就整个程序推出(前面有窗口隐藏了)

2024-12-20 18:43:43
推荐回答(4个)
回答1:

FormClosing事件
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(Form1_FormClosing);
void Form1_FormClosing(object sender, System.Windows.Forms.FormClosingEventArgs e)
{
//关闭你要关闭的东西吧
throw new System.NotImplementedException();
}

回答2:

Application.Exit:通知winform消息循环退出。
Environment.Exit:终止当前进程,返回exitcode给操作系统

回答3:

在FormClosed事件下写Application.Exit();

回答4:

Application.Exit();
还有其他方法