/// <summary> /// Starts the command /// </summary> public override void Run() { ProfileExecutableForm form = new ProfileExecutableForm(); form.Owner = SD.Workbench.MainWindow; form.ShowDialog(); }
/// <summary> /// Starts the command /// </summary> public override void Run() { ProfileExecutableForm form = new ProfileExecutableForm(); new WindowInteropHelper(form).Owner = WorkbenchSingleton.MainForm.Handle; form.ShowDialog(); }