C# Class ComponentFactory.Krypton.Toolkit.KryptonSplitContainerDesigner

Inheritance: System.Windows.Forms.Design.ParentControlDesigner
Mostra file Open project: Cocotteseb/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.

InternalControlDesigner ( int internalControlIndex ) : System.Windows.Forms.Design.ControlDesigner

Returns the internal control designer with the specified index in the ControlDesigner.

NumberOfInternalControlDesigners ( ) : int

Returns the number of internal control designers in the ControlDesigner.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Clean up any resources being used.

OnDragEnter ( DragEventArgs de ) : void

Raises the DragEnter event.

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

InternalControlDesigner() public method

Returns the internal control designer with the specified index in the ControlDesigner.
public InternalControlDesigner ( int internalControlIndex ) : System.Windows.Forms.Design.ControlDesigner
internalControlIndex int A specified index to select the internal control designer. This index is zero-based.
return System.Windows.Forms.Design.ControlDesigner

NumberOfInternalControlDesigners() public method

Returns the number of internal control designers in the ControlDesigner.
public NumberOfInternalControlDesigners ( ) : int
return int

OnDragEnter() protected method

Raises the DragEnter event.
protected OnDragEnter ( DragEventArgs de ) : void
de System.Windows.Forms.DragEventArgs A DragEventArgs that contains the event data.
return void