Click or drag to resize

ControlMouseDoubleClick Event

Occurs when a mouse button is double clicked within the bounds of the control

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public event EventHandler<MouseEventArgs> MouseDoubleClick

Value

Type: SystemEventHandlerMouseEventArgs

Implements

IMouseInputSourceMouseDoubleClick
Remarks
If you do not set the Handled property to true, and the default behaviour of the control does not accept double clicks, the MouseDown event will be called for each click of the mouse button. For example, if the user clicks twice in succession, the following will be called: 1. MouseDown for the first click 2. MouseDoubleClick for the second click 3. If Handled has not been set in #2, MouseDown will be called a 2nd time
See Also