Skip to main content
Version: 3.5

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.

public delegate void MouseEventHandler(Object sender, MouseEventArgs e)

Parameters

NameTypeDescription
senderObjectThe source of the event.
eMouseEventArgsA MouseEventArgs that contains the event data.

Fired By

NameDescription
CheckedListBox.MouseClickFired when the user clicks the CheckedListBox control with the mouse.
Control.MouseClickFired when the control is clicked by the mouse.
Control.MouseDoubleClickFired when the control is double clicked by the mouse.
Control.MouseDownFired when the mouse pointer is over the control and a mouse button is pressed.
Control.MouseMoveFired when the mouse pointer is moved over the control.
Control.MouseUpFired when the mouse pointer is over the control and a mouse button is released.
Control.MouseWheelFired when the mouse wheel moves while the control has focus.