を使用してwpf アプリケーションを起動しようとしています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 プロセスは、すぐに終了する前に、タスク マネージャーで短時間点滅します。