码迷,mamicode.com
首页 > Windows程序 > 详细

C#退出程序,退出任务管理器

时间:2018-10-13 18:08:58      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:sharp   har   for   管理   osi   form   highlight   exit   environ   

//窗体关闭之前
this.FormClosing += (s, r) =>
{
    System.Environment.Exit(0);
};
//窗体关闭
this.Closed += (s, r) =>
{
    this.Dispose();
    this.Close();
};

 

C#退出程序,退出任务管理器

标签:sharp   har   for   管理   osi   form   highlight   exit   environ   

原文地址:https://www.cnblogs.com/sntetwt/p/9783546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!