我正在尝试使用. Process.Start
当我通过双击启动进程时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 进程在任务管理器中短暂闪烁,然后立即关闭。