iRuler.Dialogs.AboutBox.showSplashScreen C# (CSharp) Method

showSplashScreen() public static method

public static showSplashScreen ( ) : void
return void
        public static void showSplashScreen()
        {
            if (null != m_frmAboutBox)
            {
                return;
            }
            m_thread = new System.Threading.Thread(new System.Threading.ThreadStart(SplashForm));
            m_thread.IsBackground = true;
            m_thread.SetApartmentState(System.Threading.ApartmentState.MTA);
            m_thread.Start();
        }