Beispiel #1
0
 public void Show(bool startMinimized)
 {
     if (startMinimized)
     {
         GuiInteractionService.HideApplication();
     }
     else
     {
         ViewCore.Show();
         Task.Run(async() => await ShowOnLaunch());
     }
 }
Beispiel #2
0
 public void Show(bool startMinimized)
 {
     if (startMinimized)
     {
         GuiInteractionService.HideApplication();
     }
     else
     {
         ViewCore.Show();
         ShowOnLaunch();
     }
 }