Hello:
I found the TrackInteractiveOverlay can not resolve the situation mouse move with mouse button down.
my code is shown below:
class CustomTrackInteractiveOverlay :TrackInteractiveOverlay ()
{
protected override InteractiveResult MouseMoveCore(InteractionArguments interactionArguments)
{
if(interactionArguments.MouseButton == MouseButton .Left)
MessageBox.show(" mouse move on map with mouse left button down");
}
}
But the result is that the MessageBox can not be show, when i move the mouse with the left button clicked down.
In the debug info, I see the interactionArguments.MouseButton always NONE.
Please Help!