c# – ProcessStartInfo.UseShellExecute = true并等待进程退出

c# – ProcessStartInfo.UseShellExecute = true并等待进程退出,第1张

概述我想使用 shell可执行文件来尊重启动应用程序的用户首选项,但我还需要知道该特定应用程序何时关闭. Process editProcess = new Process();ProcessStartInfo startInfo = new ProcessStartInfo();startInfo.FileName = filename;startInfo.Verb = "edit";sta 我想使用 shell可执行文件来尊重启动应用程序的用户首选项,但我还需要知道该特定应用程序何时关闭.

Process editProcess = new Process();processstartinfo startInfo = new processstartinfo();startInfo.filename = filename;startInfo.Verb = "edit";startInfo.UseShellExecute = true;editProcess.StartInfo = startInfo;// start the default editoreditProcess.Start();editProcess.WaitForExit();

WaitForExit似乎在shell进程退出时返回,而不是在真正的进程退出时返回.

有没有更好的方法知道何时启动应用程序退出而不是手动解析注册表,找到正确的应用程序启动并显式启动该应用程序而不执行shell?

解决方法 处理流程退出事件:

editProcess.Exited += process_Exited;
总结

以上是内存溢出为你收集整理的c# – ProcessStartInfo.UseShellExecute = true并等待进程退出全部内容,希望文章能够帮你解决c# – ProcessStartInfo.UseShellExecute = true并等待进程退出所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1227537.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存