C# Class ComponentFactory.Krypton.Toolkit.KryptonHeaderGroupDesigner

Inheritance: System.Windows.Forms.Design.ParentControlDesigner
Afficher le fichier Open project: ComponentFactory/Krypton Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Releases all resources used by the component.

GetHitTest ( Point point ) : bool

Indicates whether a mouse click at the specified point should be handled by the control.

OnMouseLeave ( ) : void

Receives a call when the mouse leaves the control.

Private Methods

Méthode Description
OnComponentRemoving ( object sender, ComponentEventArgs e ) : void
OnHeaderGroupDoubleClick ( object sender, Point pt ) : void
OnHeaderGroupMouseUp ( object sender, MouseEventArgs e ) : void

Method Details

CanParent() public méthode

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.
Résultat bool

Dispose() protected méthode

Releases all resources used by the component.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
Résultat void

GetHitTest() protected méthode

Indicates whether a mouse click at the specified point should be handled by the control.
protected GetHitTest ( Point point ) : bool
point Point A Point indicating the position at which the mouse was clicked, in screen coordinates.
Résultat bool

Initialize() public méthode

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

InternalControlDesigner() public méthode

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.
Résultat System.Windows.Forms.Design.ControlDesigner

NumberOfInternalControlDesigners() public méthode

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

OnMouseLeave() protected méthode

Receives a call when the mouse leaves the control.
protected OnMouseLeave ( ) : void
Résultat void