DragDrop.RemoveDropHandler(DependencyObject, DragEventHandler) Method

Definition

Removes a Drop event handler from a specified dependency object.

public:
 static void RemoveDropHandler(System::Windows::DependencyObject ^ element, System::Windows::DragEventHandler ^ handler);
public static void RemoveDropHandler (System.Windows.DependencyObject element, System.Windows.DragEventHandler handler);
static member RemoveDropHandler : System.Windows.DependencyObject * System.Windows.DragEventHandler -> unit
Public Shared Sub RemoveDropHandler (element As DependencyObject, handler As DragEventHandler)

Parameters

element
DependencyObject

The dependency object (a UIElement or ContentElement) from which to remove the event handler.

handler
DragEventHandler

A delegate that references the handler method to be removed.

Remarks

The Drop event occurs when an object is dropped within an element's bounds.

This method removes a handler for the bubbling version of the Drop event. To remove a handler for the tunneling version of this event, see RemovePreviewDropHandler.

Applies to

See also