/// <summary> /// Closes the SplashScreen /// </summary> public static void CloseSplashScreen() { if (sf != null) { sf.CloseSplashScreen(); sf = null; } }
/// <summary> /// Displays the splashscreen /// </summary> public static void ShowSplashScreen() { if (sf == null) { sf = new SplashScreenForm(); sf.ShowSplashScreen(); } }