我有一个 WPF 应用程序,关闭应用程序后,它的进程app.exe *32
仍在任务管理器的进程列表中运行。
我需要关闭它,因为当我对我的代码进行编辑时,我收到以下错误 -
Unable to copy file "obj\x86\Release\frontEndTest.exe" to "bin\Release\app.exe". The process cannot access the file 'bin\Release\app.exe' because it is being used by another process.
我知道在此之前已经提出过此类问题。
Assembly.cs
但是,通过将我的更改为 -该解决方案对我不起作用
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
我想也许如果我要找到Window closed
事件并放置类似的东西 -Process.GetCurrentProcess().Kill();
在事件中,当用户从'x'
表单右上角的红色按钮关闭应用程序时,这可能会终止进程?