Esempio n. 1
0
        /// <summary>
        /// Starts the command
        /// </summary>
        public override void Run()
        {
            ProfileExecutableForm form = new ProfileExecutableForm();

            form.Owner = WorkbenchSingleton.MainWindow;
            form.ShowDialog();
        }
Esempio n. 2
0
        /// <summary>
        /// Starts the command
        /// </summary>
        public override void Run()
        {
            ProfileExecutableForm form = new ProfileExecutableForm();

            new WindowInteropHelper(form).Owner = WorkbenchSingleton.MainForm.Handle;
            form.ShowDialog();
        }