public bool Start(string showDir, string url)
        {
            _showDir = showDir;

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

            _form = new StatusForm(this);

            ReadSetting();

            _form.Show();

            return(true);
        }