以下のコードを含むフォームで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;