I need to run an external exe "embed.exe" under my WPF project,
here's a snippet
ProcessStartInfo processInf = new ProcessStartInfo("embed.exe");
processInf.Arguments = string.Format(@"Some arguments");
processInf.WindowStyle = ProcessWindowStyle.Hidden;
Process run = Process.Start(processInf);
my problem is that it's block my UI,
is there a way to include embed.exe using a thread or any code that won't block the UI ?