Example #1
0
 public static void ShowSplashScreen()
 {
     splashScreen = new SplashScreenForm();
     splashScreen.Show();
 }
Example #2
0
 public static void ShowSplashScreen()
 {
     splashScreen = new SplashScreenForm();
     splashScreen.Show();
 }
Example #3
0
 private void ShowSplashScreen()
 {            
     splashTimer = new System.Windows.Forms.Timer();
     splashTimer.Enabled = true;
     splashTimer.Interval = 100;
     splashTimer.Tick += new System.EventHandler(this.splashTimer_Tick);
     splashTimer.Start();
     splashForm = new SplashScreenForm();
     splashForm.Opacity = 0.2;
     splashForm.Show(this);
     splashForm.TopMost = true;
 }