Je suis dans un WindowsForm (C# .net 3.5) et sur un clic d'un bouton lancer une autre application externe (aussi .net 3.5) en utilisant Process.Start() et comprendre quand il est disponible après que je l'ai lancé.Comment savoir quand un winform est chargé par Process.Start?
ProcessStartInfo psInfo = new ProcessStartInfo(@"MyApplication.exe");
psInfo.RedirectStandardOutput = true;
psInfo.RedirectStandardError = true;
psInfo.UseShellExecute = false;
psInfo.CreateNoWindow = true;
Process proc = Process.Start(psInfo);
proc... IsFullyLoaded()?
Comment puis-je faire?