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