I have implemented a basic drag-n-drop using Telerik's new DragDropManager, pretty much the same as instructed here http://www.telerik.com/help/wpf/dragdropmanager-getting-started.html except that I am using ListView instead of ListBox.
Although it works, but I need help on the following two things:
Although it works, but I need help on the following two things:
- How to I limit the drag-n-drop so that it can only happen between the two listviews? i.e. disallow dropping to the same listview as the drag source.
- How to change cursor based on the above criteria? I try to monitor OnGiveFeedback(), but the sender is always the drag source...