Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从调试文件夹中为我的程序运行了 .exe。它有效,但是当我关闭它时,我发现它仍然列在任务管理器的进程列表中。
我想我一定忘记了一步,因为这是我的第一个 winforms 程序。
只要您Main方法中的代码如下所示:
Main
Application.Run(new MainForm());
那么你应该没问题(假设“MainForm”是你的主窗体的名称)。Application.Run当您传入的表单关闭时,WinForms 将退出该过程。
Application.Run
否则,您可以Application.Exit()在表单的“已关闭”事件处理程序中调用自己。
Application.Exit()