我正在尝试以带有以下代码的形式打开一个 exe。
这是打开我的程序但在表单之外。我想在我的表单内有这个程序。请帮助问候
Process p = new Process();
p.StartInfo.FileName = @"C:\Program Files\Cadence Design Systems\Allegro Free Physical Viewers 16.6\tools\pcb\bin\allegro_free_viewer";
p.StartInfo.Arguments = "ProcessStart.cs";
p.Start();
p.WaitForExit();
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;