public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner, string iconKey, Dictionary <string, object> propertyGridObjectList) : this(control, name, owner, iconKey) { _propertyGridObjectList = propertyGridObjectList; }
public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner) { _control = control; _name = name; _owner = owner; _toolbarCommands = null; }
public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner, string iconKey, Dictionary<string, object> propertyGridObjectList) : this(control, name, owner, iconKey) { _propertyGridObjectList = propertyGridObjectList; }
public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner, string iconKey) { _control = control; _control.ContentDocument = this; _name = name; _owner = owner; _iconKey = iconKey; _toolbarCommands = null; }
//Kept for plugins public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner, Dictionary <string, object> propertyGridObjectList) : this(control, name, owner, null, propertyGridObjectList) { }
//Kept for plugins public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner) : this(control, name, owner, (string)null) { }
//Kept for plugins public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner, Dictionary<string, object> propertyGridObjectList) : this(control, name, owner, null, propertyGridObjectList) { }
public DockingContainer(EditorContentPanel panel) { _panel = panel; Controls.Add(panel); panel.Dock = DockStyle.Fill; }