C# Class ComponentFactory.Krypton.Workspace.KryptonWorkspaceDesigner

Inheritance: System.Windows.Forms.Design.ParentControlDesigner
Datei anzeigen Open project: ComponentFactory/Krypton Class Usage Examples

Public Methods

Method Description
CanParent ( Control control ) : bool

Indicates whether the specified control can be a child of the control managed by a designer.

Initialize ( IComponent component ) : void

Initializes the designer with the specified component.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnDragDrop ( DragEventArgs de ) : void

Called when a drag-and-drop object is dropped onto the control designer view.

OnDragEnter ( DragEventArgs de ) : void

Called when a drag-and-drop operation enters the control designer view.

OnDragOver ( DragEventArgs de ) : void

Called when a drag-and-drop object is dragged over the control designer view.

Private Methods

Method Description
OnComponentRemoving ( object sender, ComponentEventArgs e ) : void

Method Details

CanParent() public method

Indicates whether the specified control can be a child of the control managed by a designer.
public CanParent ( Control control ) : bool
control System.Windows.Forms.Control The Control to test.
return bool

Dispose() protected method

Clean up any resources being used.
protected Dispose ( bool disposing ) : void
disposing bool true if managed resources should be disposed; otherwise, false.
return void

Initialize() public method

Initializes the designer with the specified component.
public Initialize ( IComponent component ) : void
component IComponent The IComponent to associate with the designer.
return void

OnDragDrop() protected method

Called when a drag-and-drop object is dropped onto the control designer view.
protected OnDragDrop ( DragEventArgs de ) : void
de System.Windows.Forms.DragEventArgs A DragEventArgs that provides data for the event.
return void

OnDragEnter() protected method

Called when a drag-and-drop operation enters the control designer view.
protected OnDragEnter ( DragEventArgs de ) : void
de System.Windows.Forms.DragEventArgs A DragEventArgs that provides data for the event.
return void

OnDragOver() protected method

Called when a drag-and-drop object is dragged over the control designer view.
protected OnDragOver ( DragEventArgs de ) : void
de System.Windows.Forms.DragEventArgs A DragEventArgs that provides data for the event.
return void