예제 #1
0
 public void Start()
 {
     isStarted = true;
     form      = new ORXSplashScreen();
     form.Show();
     System.Windows.Forms.Application.DoEvents();
 }
예제 #2
0
 public void Stop()
 {
     if (form != null)
     {
         form.Hide();
         form.Close();
         form = null;
     }
     isStarted = false;
 }