static async Task SetFokus(ProcessSD proc)
 {
     for (int i = 0; i < 5; i++)
     {
         try
         {
             WindowAPI.SetForegroundWindow(proc.MainWindowHandle);
         }
         catch {}
         await Task.Delay(1000);
     }
 }