c#怎么设置关闭窗口就整个程序推出(前面有窗口隐藏了)
4个回答
展开全部
FormClosing事件
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(Form1_FormClosing);
void Form1_FormClosing(object sender, System.Windows.Forms.FormClosingEventArgs e)
{
//关闭你要关闭的东西吧
throw new System.NotImplementedException();
}
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(Form1_FormClosing);
void Form1_FormClosing(object sender, System.Windows.Forms.FormClosingEventArgs e)
{
//关闭你要关闭的东西吧
throw new System.NotImplementedException();
}
展开全部
Application.Exit:通知winform消息循环退出。
Environment.Exit:终止当前进程,返回exitcode给操作系统
Environment.Exit:终止当前进程,返回exitcode给操作系统
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在FormClosed事件下写Application.Exit();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-19
展开全部
Application.Exit();
还有其他方法
还有其他方法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询