ATMLWorkBench.Program.ShowSplashScreen C# (CSharp) Method

ShowSplashScreen() private static method

private static ShowSplashScreen ( ) : void
return void
        private static void ShowSplashScreen()
        {
            _splashScreen.Show();
            while (!_splashScreen.Completed)
            {
                Application.DoEvents();
            }
            _splashScreen.Close();
            _splashScreen.Dispose();
        }