gpt4 book ai didi

c# - 想要 C# 程序启动 WPF 应用程序

转载 作者:太空宇宙 更新时间:2023-11-03 18:45:03 25 4
gpt4 key购买 nike

我发现需要从 C# 程序内部启动 WPF 应用程序。我编写了一个名为 eBrowse 的简单 WPF 浏览器作为我的练习。然后,我被要求将它添加到一个已经在使用的 c# 程序中。

我尝试了 System.Diagnostics.Process.Start(@"C:\eBrowse"); 但没有成功。

在网站上发现的另一种可能性:

myProcess.StartInfo.UseShellExecute = true;
// You can start any process, HelloWorld is a do-nothing example.
//myProcess.StartInfo.FileName = "C:\\HelloWorld.exe";
myProcess.StartInfo.FileName = @"C:\eBrowse";
myProcess.StartInfo.CreateNoWindow = true;
myProcess.Start();
// This code assumes the process you are starting will terminate itself.
// Given that is is started without a window so you cannot terminate it
// on the desktop, it must terminate itself or you can do it programmatically
// from this application using the Kill method.

我想知道是否无法从 C# 启动 WPF 应用程序。任何想法都会很棒。

最佳答案

我认为您没有指定您的 EXE 名称。尝试以下操作:

myProcess.StartInfo.FileName = @"C:\eBrowse\yourEXeName.exe"; 

关于c# - 想要 C# 程序启动 WPF 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5252207/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com