Beispiel #1
0
 public override void Run()
 {
     using (CommonAboutDialog ad = new CommonAboutDialog()) {
         ad.Owner = (Form)WorkbenchSingleton.Workbench;
         ad.ShowDialog(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm);
     }
 }
Beispiel #2
0
 public override void Run()
 {
     using (CommonAboutDialog ad = new CommonAboutDialog()) {
         ad.Owner = WorkbenchSingleton.MainForm;
         ad.ShowDialog(WorkbenchSingleton.MainForm);
     }
 }
Beispiel #3
0
        protected override void OnActivated()
        {
            base.OnActivated();

            CommonAboutDialog cad = new CommonAboutDialog();

            cad.Run();
        }
Beispiel #4
0
 public override void Run()
 {
     using (CommonAboutDialog ad = new CommonAboutDialog())
     {
         ad.Owner         = (Form)WorkbenchSingleton.Workbench;
         ad.StartPosition = FormStartPosition.CenterParent;
         ad.ShowDialog();
     }
 }
Beispiel #5
0
        protected override void Run()
        {
            CommonAboutDialog dlg = new CommonAboutDialog();

            dlg.TransientFor = IdeApp.Workbench.RootWindow;
            try {
                dlg.Run();
            }
            finally {
                dlg.Destroy();
            }
        }
Beispiel #6
0
        protected override void Run()
        {
            var dlg = new CommonAboutDialog();

            try {
                MessageService.PlaceDialog(dlg, null);
                dlg.Run();
            }
            finally {
                dlg.Destroy();
            }
        }
Beispiel #7
0
 protected override void Run()
 {
     CommonAboutDialog.ShowAboutDialog();
 }
Beispiel #8
0
 public override void Run()
 {
     using (CommonAboutDialog ad = new CommonAboutDialog()) {
         ad.ShowDialog(SD.WinForms.MainWin32Window);
     }
 }
Beispiel #9
0
 public override void Run()
 {
     using (CommonAboutDialog ad = new CommonAboutDialog()) {
         ad.ShowDialog(WorkbenchSingleton.MainWin32Window);
     }
 }