如果我的应用程序关闭或强制关闭,如何自动关闭exe。是否可以将exe文件与我的应用程序链接?我可以在win形式中启动exe,但我想在winform之外启动它。
答案 0 :(得分:1)
您希望使用Process
类并使用GetProcessByName
或GetProcessById
获取实例。然后,您可以在结果对象上调用Kill
:
Process.GetProcessByName("process-name.exe").Kill();
这是一个相当核的选择,所以或者,您可以尝试CloseMainWindow
尝试更优雅的关闭:
Process.GetProcessByName("process-name.exe").CloseMainWindow();