MouseEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the MouseDown, MouseUp, or MouseMove event of a form, control, or other component.
- C#
- VB.NET
public delegate void MouseEventHandler(Object sender, MouseEventArgs e)
Public Delegate Sub MouseEventHandler(ByVal sender As [Object], ByVal e As MouseEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | MouseEventArgs | A MouseEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| CheckedListBox.MouseClick | Fired when the user clicks the CheckedListBox control with the mouse. |
| Control.MouseClick | Fired when the control is clicked by the mouse. |
| Control.MouseDoubleClick | Fired when the control is double clicked by the mouse. |
| Control.MouseDown | Fired when the mouse pointer is over the control and a mouse button is pressed. |
| Control.MouseMove | Fired when the mouse pointer is moved over the control. |
| Control.MouseUp | Fired when the mouse pointer is over the control and a mouse button is released. |
| Control.MouseWheel | Fired when the mouse wheel moves while the control has focus. |