public static void ShowTabbedOptions(string dialogTitle, AddInTreeNode node)
 {
     TabbedOptions options = new TabbedOptions(dialogTitle, PropertyService.Get<Properties>("SkyMap.Net.TextEditor.Document.Document.DefaultDocumentAggregatorProperties", new Properties()), node);
     options.Width = 450;
     options.Height = 0x1a9;
     options.FormBorderStyle = FormBorderStyle.FixedDialog;
     options.ShowDialog(WorkbenchSingleton.MainForm);
     options.Dispose();
 }
Example #2
0
        public static void ShowTabbedOptions(string dialogTitle, AddInTreeNode node)
        {
            TabbedOptions o = new TabbedOptions(dialogTitle, node);

            o.Width           = 450;
            o.Height          = 425;
            o.FormBorderStyle = FormBorderStyle.FixedDialog;
            o.ShowDialog(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm);
            o.Dispose();
        }
Example #3
0
        public static void ShowTabbedOptions(string dialogTitle, AddInTreeNode node)
        {
            TabbedOptions o = new TabbedOptions(dialogTitle,
                                                ((Properties)PropertyService.Get("ICSharpCode.TextEditor.Document.Document.DefaultDocumentAggregatorProperties", new Properties())),
                                                node);

            o.Width           = 450;
            o.Height          = 425;
            o.FormBorderStyle = FormBorderStyle.FixedDialog;
            o.ShowDialog(ICSharpCode.SharpDevelop.Gui.WorkbenchSingleton.MainForm);
            o.Dispose();
        }