protected override void OnActivated() { base.OnActivated(); CommonAboutDialog cad = new CommonAboutDialog(); cad.Run(); }
protected override void Run() { CommonAboutDialog dlg = new CommonAboutDialog(); dlg.TransientFor = IdeApp.Workbench.RootWindow; try { dlg.Run(); } finally { dlg.Destroy(); } }
protected override void Run() { var dlg = new CommonAboutDialog(); try { MessageService.PlaceDialog(dlg, null); dlg.Run(); } finally { dlg.Destroy(); } }