DragDrop::AddDragLeaveHandler Method (DependencyObject^, DragEventHandler^)
.NET Framework (current version)
Adds a DragLeave event handler to a specified dependency object.
Assembly: PresentationCore (in PresentationCore.dll)
public: static void AddDragLeaveHandler( DependencyObject^ element, DragEventHandler^ handler )
Parameters
- element
-
Type:
System.Windows::DependencyObject^
The dependency object (a UIElement or ContentElement) to which to add the event handler.
- handler
-
Type:
System.Windows::DragEventHandler^
A delegate that references the handler method to be added.
The DragLeave event occurs when an object is dragged out of the element's bounds.
This method adds a handler for the bubbling version of the DragLeave event. To add a handler for the tunneling version of this event, see AddPreviewDragLeaveHandler.
.NET Framework
Available since 3.0
Available since 3.0
Show: