I'm using WPF to create two ListViews and implement drag-drop functionality. (both intra-listview and inter-listview)
I found an interesting post here which does that.
However, there is a problem. When I drag a listviewitem from listView1, I see the adorner (the ghost image) only inside listView1. When I want to drop the listviewItem on ListView2, I must see the adorner there as well. Basically, the adorner appears only on the listView from which the drag operation started. Once it is outside the listView, it disappears.
I have done a bit of research and could not find a way to make the adorner visible outside the control from which the drag was initiated.
Can anyone help me with some suggestions?