public override EditorPartCollection CreateEditorParts()
        {
            ConfigPart tp = new ConfigPart();

            tp.ID          = this.ID + "ConnectionSettingsEditor";
            tp.Title       = "Connection Settings";
            tp.ChromeState = PartChromeState.Normal;

            List <EditorPart> editors = new List <EditorPart>();

            /*PropertyGridEditorPart tp = new PropertyGridEditorPart();
             * tp.ID = this.ID + "setting_editor";
             * tp.Title = "Connection Settings";
             */
            editors.Add(tp);

            EditorPartCollection result = new EditorPartCollection(editors);

            return(result);
        }
        public override EditorPartCollection CreateEditorParts()
        {
            ConfigPart tp = new ConfigPart();
            tp.ID = this.ID + "ConnectionSettingsEditor";
            tp.Title = "Connection Settings";
            tp.ChromeState = PartChromeState.Normal;

            List<EditorPart> editors = new List<EditorPart>();

            /*PropertyGridEditorPart tp = new PropertyGridEditorPart();
            tp.ID = this.ID + "setting_editor";
            tp.Title = "Connection Settings";
            */
            editors.Add(tp);

            EditorPartCollection result = new EditorPartCollection(editors);

            return result;
        }