如何在任务管理器中杀死exe?
我使用 Visual Studio 安装项目生成了 C#-Win App exe。 关闭已安装的应用程序后,进程仍在任务管理器中运行。 我尝试在每个表单的 Dispose() 中使用 Application.Exit() 。 但是在将一个表单导航到另一个表单时,我使用了 this.Hide()。因此每个导航应用程序都会关闭。
我现在无法使用MDI概念..
该怎么做?
请指导我..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在最后一个表单中,处理
Closing
事件,然后调用 Envirunment.Exit,它会产生你想要的同样的效果。所以:In your last form handle the
Closing
event and then call Envirunment.Exit, it will cause the same effect you want. So:在主窗体
Form_Close
事件处理程序中,您可以使用Application.ExitThread()
in the main form
Form_Close
event handler you can haveApplication.ExitThread()
感谢您的回复
在每个表单 FormClosed 事件处理程序中,我调用了 Application.Exit();
它工作得很好..
Thanks for your replies
In the each form FormClosed event handler i called the Application.Exit();
It's working great..