All pages
Powered by GitBook
1 of 1

Loading...

MouseEventHandler

Wisej.Web.MouseEventHandler

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.0.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)
Public Delegate Sub MouseEventHandler(ByVal sender As [Object], ByVal e As MouseEventArgs)

Parameters

Name
Type
Description

Fired By

Name
Description

Fired when the mouse wheel moves while the control has focus.

sender

Object

The source of the event.

e

MouseEventArgs

A MouseEventArgs that contains the event data.

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