my WPF App starts another .exe with
processtempexe.Start(tempexe);
processtempexe.WaitForExit();
now i got the problem that my WPF app is overlaping the recent started tempexe and i dont have the chance to get it on top of my WPF app to actually use it. How can i re-activate my started temp.exe. Is there a solution, please help?
thanks for every thought 🙂
You could minimize the WPF window in between those calls.