Example #1
0
 public static void ShowStartWindow()
 {
     if (startWindow == null)
     {
         startWindow = new StartWindow();
         startWindow.Show();
     }
     else
     {
         startWindow.Show();
     }
 }