void MenuItemClick(object sender, EventArgs e)
        {
            if (_form.Disposing || _form.IsDisposed)
                _form = new SourceSetupPluginForm(this);

            GlueCommands.DialogCommands.SetFormOwner(_form);
            _form.Show();
        }
예제 #2
0
        void MenuItemClick(object sender, EventArgs e)
        {
            if (_form.Disposing || _form.IsDisposed)
            {
                _form = new SourceSetupPluginForm(this);
            }

            GlueCommands.DialogCommands.SetFormOwner(_form);
            _form.Show();
        }
예제 #3
0
 public SourceSetupPlugin()
 {
     _form = new SourceSetupPluginForm(this);
 }
 public SourceSetupPlugin()
 {
     _form = new SourceSetupPluginForm(this);
 }