public void Stop() { if (_form == null) { return; } _form.Close(); _form = null; }
public bool Start(string showDir, string xScheduleURL) { _showDir = showDir; _xScheduleURL = xScheduleURL; if (_form != null) { return(true); } _form = new StatusForm(this); _form.Show(); return(true); }