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