IMouseInputSourceMouseDoubleClick 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 event EventHandler<MouseEventArgs> MouseDoubleClick
Event MouseDoubleClick As EventHandler(Of MouseEventArgs)
abstract MouseDoubleClick : IEvent<EventHandler<MouseEventArgs>,
MouseEventArgs>
Value
Type:
SystemEventHandlerMouseEventArgsRemarks
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