如何在单击按钮时使用 c#.net 代码在正在运行的 exe 文件之间切换?

发布于 2024-08-19 22:18:51 字数 242 浏览 7 评论 0原文

先生,我想知道如何在按钮单击事件上的 .net 应用程序上使用 c#.net 代码在不同的 exe 文件之间导航/切换。基本上,我想在当前和之前打开的正在运行的 exe 文件之间进行切换。 .im 能够在我的 .net 应用程序上运行 exe 文件,但无法提供打开先前运行的 exe 文件的选项...总的来说,我想提供与我们在操作系统窗口中拥有的功能相同的功能可以在任务栏菜单上的应用程序之间切换 我如何使用 C# 代码在 c#.net 应用程序中执行相同的操作。 谢谢

sir i want to know that how could i navigate/toggle between the different exe files using c#.net code on my .net application on the button click event..basically i want to do toggling between the current and previously opened running exe files..im able to run an exe file on my .net application but not able to provide an option for opening the previously running exe file...on the whole i want to provide a facility same as we are having in the OS windows that we could toggle between the applications on the taskbar menu
how could i do the same in the c#.net application using c# code.
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丶视觉 2024-08-26 22:18:51

虽然不确定我是否正确理解了您的意思,但如果您想在任何事件上调用新的 exe,请使用:-

System.Diagnostics.ProcessStartInfo f = new System.Diagnostics.ProcessStartInfo("C:\\windows\\system32\\rundll32.exe",
"C:\\windows\\system32\\shimgvw.dll,ImageView_Fullscreen " +
fileName.TrimEnd (null));

try
{
// Pass the ProcessStartInfo object to the Start function.
System.Diagnostics.Process.Start (f);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine (ex.ToString ());
} 

Although not sure if I got you correctly but if you want to invoke a new exe on any event use:-

System.Diagnostics.ProcessStartInfo f = new System.Diagnostics.ProcessStartInfo("C:\\windows\\system32\\rundll32.exe",
"C:\\windows\\system32\\shimgvw.dll,ImageView_Fullscreen " +
fileName.TrimEnd (null));

try
{
// Pass the ProcessStartInfo object to the Start function.
System.Diagnostics.Process.Start (f);
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine (ex.ToString ());
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文