Hello.
Like the title says, I need a notification when the drag and drop operation is finished and the dropped item has been moved to it's correct position, this is because I need the new position of the item.
I'm not using the native D&D in the RadTreeView, but I'm using the RadDragAndDropManager to handle my D&D. Also as I was told here that in order to handle the D&D on my own I have to set the e.Handled to true in the PreviewDragEnded event.
So basically I just need an event that happens after:
1) The drop has finished
2) The tree view has been rearranged to update the new position of the dropped item
At that point, I should be able to find the dropped item and call this to get its new coordinates (reference):
GeneralTransform generalTransform = droppedItem.TransformToVisual( parentElement );
Point childToParentCoordinates = generalTransform.Transform( new Point( 0, 0 ) );
Let me know if this is possible. Thanks!