Process 设置
robotProcess.StartInfo.UseShellExecute = false;
robotProcess.StartInfo.RedirectStandardInput = true;
robotProcess.StartInfo.RedirectStandardOutput = true;
robotProcess.StartInfo.RedirectStandardError = true;
robotProcess.StartInfo.CreateNoWindow = false;
robotProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
robotProcess.EnableRaisingEvents = true;//程序退出引发事件
robotProcess.Exited += new EventHandler(robotOpenProcess_Exited);
监听某个程序 使得那个程序无法正常使用?不去掉 监听退出事件则能正常使用?这是什么原因?