C# Class ComponentFactory.Krypton.Ribbon.ContextClickController

Process mouse events looking for a context click.
Inheritance: ComponentFactory.Krypton.Toolkit.GlobalId, IMouseController
Mostra file Open project: ComponentFactory/Krypton Class Usage Examples

Public Methods

Method Description
ContextClickController ( ) : System

Initialize a new instance of the ContextClickController class.

DoubleClick ( Point pt ) : void

Left mouse button double clicl.

MouseDown ( Control c, Point pt, MouseButtons button ) : bool

Mouse button has been pressed in the view.

MouseEnter ( Control c ) : void

Mouse has entered the view.

MouseLeave ( Control c, ViewBase next ) : void

Mouse has left the view.

MouseMove ( Control c, Point pt ) : void

Mouse has moved inside the view.

MouseUp ( Control c, Point pt, MouseButtons button ) : void

Mouse button has been released in the view.

Protected Methods

Method Description
OnContextClick ( MouseEventArgs e ) : void

Raises the ContextClick event.

Method Details

ContextClickController() public method

Initialize a new instance of the ContextClickController class.
public ContextClickController ( ) : System
return System

DoubleClick() public method

Left mouse button double clicl.
public DoubleClick ( Point pt ) : void
pt Point Mouse position relative to control.
return void

MouseDown() public method

Mouse button has been pressed in the view.
public MouseDown ( Control c, Point pt, MouseButtons button ) : bool
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button pressed down.
return bool

MouseEnter() public method

Mouse has entered the view.
public MouseEnter ( Control c ) : void
c System.Windows.Forms.Control Reference to the source control instance.
return void

MouseLeave() public method

Mouse has left the view.
public MouseLeave ( Control c, ViewBase next ) : void
c System.Windows.Forms.Control Reference to the source control instance.
next ViewBase Reference to view that is next to have the mouse.
return void

MouseMove() public method

Mouse has moved inside the view.
public MouseMove ( Control c, Point pt ) : void
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
return void

MouseUp() public method

Mouse button has been released in the view.
public MouseUp ( Control c, Point pt, MouseButtons button ) : void
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button released.
return void

OnContextClick() protected method

Raises the ContextClick event.
protected OnContextClick ( MouseEventArgs e ) : void
e MouseEventArgs A MouseEventArgs containing the event data.
return void