我有 .NET windows 窗体和按钮。单击按钮时,我启动 bat 文件:
//execute batch
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = "test.bat";
proc.StartInfo.WorkingDirectory = Path.GetDirectoryName(path);
proc.Start();
proc.WaitForExit();
我希望能够再次单击按钮并停止执行 bat。现在 Windows 窗体失去焦点,我无法单击按钮。如何从 Windows 窗体停止进程?
谢谢