Occurs when a drag operation leaves the bounds of the control or the drag operation was completed inside the control.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public event EventHandler<DragEventArgs> DragLeave
Public Event DragLeave As EventHandler(Of DragEventArgs)
member DragLeave : IEvent<EventHandler<DragEventArgs>,
DragEventArgs>
Value
Type:
SystemEventHandlerDragEventArgsRemarks
Use this event to 'clean up' any state of the control for the current drag operation.
This will be called before the
DragDrop event.
See Also