CheckedListBoxArray.MouseDoubleClick Event

Definition

Occurs when a control is double-clicked by the mouse.

public:
 event System::Windows::Forms::MouseEventHandler ^ MouseDoubleClick;
public event System.Windows.Forms.MouseEventHandler MouseDoubleClick;
member this.MouseDoubleClick : System.Windows.Forms.MouseEventHandler 
Public Custom Event MouseDoubleClick As MouseEventHandler 
Public Event MouseDoubleClick As MouseEventHandler 

Event Type

Remarks

The MouseDoubleClick event occurs when the user depresses a mouse button two times in quick succession when the pointer is over the control. The time interval that distinguishes two single clicks from a double-click is determined by the mouse settings of the user's operating system.

The following series of events is raised by the control when such a user action occurs:

MouseDown

Click

MouseClick

MouseUp

MouseDown

DoubleClick

MouseDoubleClick

MouseUp

Note

DoubleClick events are logically higher-level events of a control. They may be raised by other user actions, such as shortcut key combinations.

For more information about how to handle events, see Handling and Raising Events.

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Applies to