Windows Phone 8.1 WinRT地图控件释放处理程序

时间:2015-09-18 12:59:19

标签: c# windows windows-runtime windows-phone-8.1

我想知道来自工具箱的地图控制,用户拖动的释放或类似的手势。

我尝试了所有处理程序DragLeave,LostFocus等但从未运行过。

我在Map_CenterChanged事件处理程序上使用以下代码。我的应用程序在app上添加了图钉中心,每次更改中心时都会添加另一个DraggablePin,每次都按照中心位置。

Map.CenterChanged + = Map_CenterChanged;

        if (Map.Children.Contains(firstpin))
            Map.Children.Remove(firstpin);

        Map.DesiredPitch = 0;

        MapControl.SetLocation(DraggablePin, CenterGeoPoint());
        MapControl.SetNormalizedAnchorPoint(DraggablePin, new Point(0.5, 0.5));

        if (Map.Children.Count==0)
            Map.Children.Add(DraggablePin);
        else
            Map.UpdateLayout();

我想要在map_CenterChanged停止运行的messagedialog。

请帮忙!

0 个答案:

没有答案