Beispiel #1
0
 public ContentDocument(EditorContentPanel control, string name,
                        IEditorComponent owner, string iconKey,
                        Dictionary <string, object> propertyGridObjectList)
     : this(control, name, owner, iconKey)
 {
     _propertyGridObjectList = propertyGridObjectList;
 }
Beispiel #2
0
 public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner)
 {
     _control = control;
     _name = name;
     _owner = owner;
     _toolbarCommands = null;
 }
Beispiel #3
0
		public ContentDocument(EditorContentPanel control, string name, 
            IEditorComponent owner, string iconKey,
            Dictionary<string, object> propertyGridObjectList)
			: this(control, name, owner, iconKey)
		{
			_propertyGridObjectList = propertyGridObjectList;
		}
Beispiel #4
0
 public ContentDocument(EditorContentPanel control, string name, IEditorComponent owner)
 {
     _control         = control;
     _name            = name;
     _owner           = owner;
     _toolbarCommands = null;
 }
Beispiel #5
0
 public ContentDocument(EditorContentPanel control, string name,
                        IEditorComponent owner, string iconKey)
 {
     _control = control;
     _control.ContentDocument = this;
     _name            = name;
     _owner           = owner;
     _iconKey         = iconKey;
     _toolbarCommands = null;
 }
Beispiel #6
0
 //Kept for plugins
 public ContentDocument(EditorContentPanel control, string name,
                        IEditorComponent owner, Dictionary <string, object> propertyGridObjectList)
     : this(control, name, owner, null, propertyGridObjectList)
 {
 }
Beispiel #7
0
 //Kept for plugins
 public ContentDocument(EditorContentPanel control, string name,
                        IEditorComponent owner) : this(control, name, owner, (string)null)
 {
 }
Beispiel #8
0
 //Kept for plugins
 public ContentDocument(EditorContentPanel control, string name,
     IEditorComponent owner, Dictionary<string, object> propertyGridObjectList)
     : this(control, name, owner, null, propertyGridObjectList)
 { }
Beispiel #9
0
 //Kept for plugins
 public ContentDocument(EditorContentPanel control, string name,
     IEditorComponent owner) : this(control, name, owner, (string)null)
 { }
Beispiel #10
0
 public DockingContainer(EditorContentPanel panel)
 {
     _panel = panel;
     Controls.Add(panel);
     panel.Dock = DockStyle.Fill;
 }