iRuler.Dialogs.AboutBox.showSplashScreen C# (CSharp) Méthode

showSplashScreen() public static méthode

public static showSplashScreen ( ) : void
Résultat 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();
        }