ARCed.Forms.Splash.SplashScreenForm.ShowSplashScreen C# (CSharp) Method

ShowSplashScreen() public method

Displays the splashscreen
public ShowSplashScreen ( ) : void
return void
        public void ShowSplashScreen()
        {
            if (InvokeRequired)
            {
                // We're not in the UI thread, so we need to call BeginInvoke
                BeginInvoke(new SplashShowCloseDelegate(this.ShowSplashScreen));
                return;
            }
            Show();
            Application.Run(this);
        }