Esempio n. 1
0
 private static void DoShowSplash()
 {
     if (_splashForm == null)
     {
         _splashForm = new Loading_FS();
         _splashForm.StartPosition = FormStartPosition.CenterScreen;
         _splashForm.TopMost       = true;
     }
     Application.Run(_splashForm);
 }
Esempio n. 2
0
 public static void ShowSplash()
 {
     if (_splashThread == null)
     {
         _splashThread = new Thread(new ThreadStart(DoShowSplash));
         _splashThread.IsBackground = true;
         _splashThread.Start();
     }
     else
     {
         _splashThread = new Thread(new ThreadStart(DoShowSplash));
         _splashThread.IsBackground = true;
         _splashThread.Start();
         _splashForm = null;
     }
 }