我正在尝试使用Process.Start启动wpf应用程序。当我在explorer.exe中双击以启动该进程时,它会正确启动;但是,当我尝试使用以下代码片段时:

var programPath = @"C:\Users\user\Documents\Program Directory\program.exe";
if(!File.Exists(programPath))
{
     MessageBox.Show("The program.exe file does not exist! Cannot launch.");
     return;
}
Process.Start(programPath);


在立即关闭之前,我的WPF进程在任务管理器中短暂闪烁。

最佳答案

我以这种方式解决了这个问题:

Process proc = new Process();
proc.StartInfo.FileName = programPath;
proc.StartInfo.WorkingDirectory = Path.GetDirectoryName(programPath);
proc.Start();


诀窍是将工作目录设置为WPF应用程序的路径,而不是启动应用程序的工作目录。

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

10-17 00:05