Example #1
0
        public void Stop()
        {
            if (_form == null)
            {
                return;
            }

            _form.Close();
            _form = null;
        }
Example #2
0
        public bool Start(string showDir, string xScheduleURL)
        {
            _showDir      = showDir;
            _xScheduleURL = xScheduleURL;

            if (_form != null)
            {
                return(true);
            }

            _form = new StatusForm(this);
            _form.Show();
            return(true);
        }