Method | Description | |
---|---|---|
ContextClickController ( ) : System |
Initialize a new instance of the ContextClickController class.
|
|
DoubleClick ( Point pt ) : void |
Left mouse button double clicl.
|
|
MouseDown ( |
Mouse button has been pressed in the view.
|
|
MouseEnter ( |
Mouse has entered the view.
|
|
MouseLeave ( |
Mouse has left the view.
|
|
MouseMove ( |
Mouse has moved inside the view.
|
|
MouseUp ( |
Mouse button has been released in the view.
|
Method | Description | |
---|---|---|
OnContextClick ( MouseEventArgs e ) : void |
Raises the ContextClick event.
|
public DoubleClick ( Point pt ) : void | ||
pt | Point | Mouse position relative to control. |
return | void |
public MouseDown ( |
||
c | Reference to the source control instance. | |
pt | Point | Mouse position relative to control. |
button | MouseButtons | Mouse button pressed down. |
return | bool |
public MouseEnter ( |
||
c | Reference to the source control instance. | |
return | void |
public MouseLeave ( |
||
c | Reference to the source control instance. | |
next | ViewBase | Reference to view that is next to have the mouse. |
return | void |
public MouseMove ( |
||
c | Reference to the source control instance. | |
pt | Point | Mouse position relative to control. |
return | void |
public MouseUp ( |
||
c | Reference to the source control instance. | |
pt | Point | Mouse position relative to control. |
button | MouseButtons | Mouse button released. |
return | void |
protected OnContextClick ( MouseEventArgs e ) : void | ||
e | MouseEventArgs | A MouseEventArgs containing the event data. |
return | void |