예제 #1
0
 public void EndSplash()
 {
     if (splashForm != null)
     {
         splashForm.CloseSplashScreen();
         splashForm = null;
     }
 }
예제 #2
0
 public void ShowSplashScreen()
 {
     if (splashForm == null)
     {
         splashForm = new Form_Splash();
         splashForm.ShowSplashScreen();
     }
 }