Our WPF app has multiple windows one of which hosts a map control with graphics drawn on it. I was investigating being able to drag a graphics from the the map and drop on another window (each graphic has custom data that we want to show in another window).
The control has a DragEnter event but it never seems to fire. I tried setting IsPanEnabled to false but the event still does not fire. I could use the mouse events but I want to set the drop data in DragEnter and drop it on another window that is looking for the standard Windows drop events.
Is there not a "standard" way to drag a graphic and enable Windows drag/drop?