Exemplo n.º 1
0
        static public void Close()
        {
            if (MySplashThread == null) return;
            if (MySplashForm == null) return;

            try
            {
                MySplashForm.Invoke(new MethodInvoker(MySplashForm.Close));
            }
            catch (Exception)
            {
            }
            MySplashThread = null;
            MySplashForm = null;
        }
Exemplo n.º 2
0
        static public void Close()
        {
            if (MySplashThread == null)
            {
                return;
            }
            if (MySplashForm == null)
            {
                return;
            }

            try
            {
                MySplashForm.Invoke(new MethodInvoker(MySplashForm.Close));
            }
            catch (Exception)
            {
            }
            MySplashThread = null;
            MySplashForm   = null;
        }
Exemplo n.º 3
0
 static void ShowThread()
 {
     MySplashForm = new LoadingForm();
     Application.Run(MySplashForm);
 }
Exemplo n.º 4
0
 static void ShowThread()
 {
     MySplashForm = new LoadingForm();
     Application.Run(MySplashForm);
 }