C# Class ComponentFactory.Krypton.Toolkit.KryptonMonthCalendarDesigner

Inheritance: System.Windows.Forms.Design.ControlDesigner
Mostra file Open project: ComponentFactory/Krypton Class Usage Examples

Public Methods

Method Description
Initialize ( IComponent component ) : void

Initializes the designer with the specified component.

Protected Methods

Method 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

Method Description
OnCalendarDoubleClick ( object sender, Point pt ) : void
OnCalendarMouseUp ( object sender, MouseEventArgs e ) : void
OnComponentRemoving ( object sender, ComponentEventArgs e ) : void

Method Details

Dispose() protected method

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.
return void

GetHitTest() protected method

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.
return bool

Initialize() public method

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

OnMouseLeave() protected method

Receives a call when the mouse leaves the control.
protected OnMouseLeave ( ) : void
return void