Events
DragDropManager
supports an event driven model. Both the drag source and the drop target use a standard set of events to handle drag-and-drop operations. This article lists the standard drag-and-drop events and how subscribe to them.
Subscribing to DragDropManager Events
The event handler subscription in DragDropManager can happen only in the code. There is no support to do that in XAML like with other WPF events.
To subscribe to an event, use the Add<event name>Handler methods. The following code snippet shows how to do this.
Subscribing and unsubscribing to DragDropManager events
In order for the DragInitialize
event and the other drag source events to occur, the DragDropManager.AllowDrag
or DragDropManager.AllowCapturedDrag
attached property has to be set to True
on the source element.
In order for the Drop
and the other drop Target Events to occur, the AllowDrop property of the drop target element has to be set to True
.
Setting AllowDrag and AllowDrop
Drag Source Events
-
DragInitialize
—The DragInitialize event occurs when an object is about to be dragged. This is a bubbling event. All needed information about the drag should be passed to the event arguments. Drag start can be stopped by settingCancel=true
.DragDropManager DragInitialize event handler
-
GiveFeedback
—This event occurs continuously during a drag-and-drop operation and enables the drop source to give feedback information to the user. This is a bubbling event. This feedback is commonly given by changing the appearance of the mouse pointer to indicate the effects allowed by the drop target.DragDropManager GiveFeedback event handler
-
QueryContinueDrag
—This event occurs when there is a change in the keyboard or mouse button states during a drag-and-drop operation and enables the drop source to cancel the drag-and-drop operation depending on the key/button states. This is a bubbling event.DragDropManager QueryContinueDrag event handler
-
PreviewGiveFeedback
—Tunneling version of GiveFeedback.DragDropManager PreviewGiveFeedback event handler
-
PreviewQueryContinueDrag
—Tunneling version ofQueryContinueDrag
.DragDropManager PreviewQueryContinueDrag event handler
-
DragDropCompleted
—This event occurs when an object is dropped on the drop target and is used to notify source for end of the drag operation. This is a bubbling event.DragDropManager DragDropCompleted event handler
Drop Target Events
-
DragEnter
—This event occurs when an object is dragged into the drop target's boundary. This is a bubbling event. -
DragLeave
—This event occurs when an object is dragged out of the drop target's boundary. This is a bubbling event. -
DragOver
—This event occurs continuously while an object is dragged (moved) within the drop target's boundary. This is a bubbling event. -
Drop
—This event occurs when an object is dropped on the drop target. This is a bubbling event. -
PreviewDragEnter
—Tunneling version of DragEnter. -
PreviewDragLeave
—Tunneling version of DragLeave. -
PreviewDragOver
—Tunneling version of DragOver. -
PreviewDrop
—Tunneling version of Drop.
All the drop target events share the same event arguments - DragEventArgs
- therefore the same handler signature. The following example shows an event handler that can be used with all the previous events.