DragDropManager Migration
The article explains the events of the DragDropManager.
Events and API migration
The event that was fired when the drag Starts was DragQuery for the RadDragAndDropManager. Now it is OnDragInitialize.
Bellow is the code for the DragQuery event is its corresponding code for the OnDragInitialize event:
The event corresponding to the DragInfo event in RadDragAndDropManager is now DragDropComplete. The DragDropComplete event is the equivalent of the DragQuery with status DropComplete.
The Drop event in DragDropManager corresponds to the DropInfo event with status DropCompleted.
The DragInfo event corresponds to the GiveFeedback event. Basically the GiveFeedback event can be used on the DragSource control to update the Cursor, and the DragEffects for the DragOperation.
The DropInfo event corresponds to the DragOver event of DradDropManager. The DragOver event can be used as a replacement for the DropQuery/Info events for various purposes, one of which is to update the AllowedEffects for the drag drop operation. Works both on Source and Destination.
The CancelDrag event corresponds to the QueryContinueDrag event. The CancelDrag() method logic can be replaced by subscribing to the QueryContinueDrag event and manipulating the Action property in the QueryContinueEventArgs.
The control cursor can be set in the GiveFeedbackEventArgs.
Events without analogue
PreviewGiveFeedback
PreviewQueryContinueDrag
PreviewDragEnter
PreviewDragLeave
PreviewDragOver
PreviewDrop
Missing Functionality
There is no AutoScrollBehavior out of the box
There is no DragArrow Cue