I've developed a WPF app using Bing Maps WPF. I'm trying to move a polygon drawn on the map by having the user click on the polygon, and while holding own the mouse button, dragging the polygon across the screen. When he releases the mouse button, I perform
some actions.
My problem is that, when dragging the polygon, I set the bingMap_MouseMove event to
e.Handled = true;
to stop the user from dragging the entire map. However, once I do this, when he releases the mouse button, now the bingMap_MouseUp event doesn't fire anymore.
Any ideas? Thanks...
Fabricio Rodriguez - Pretoria, South Africa