当在bing地图中点击图钉时,如何使按钮出现在图钉上方?

时间:2012-11-27 08:33:45

标签: windows-phone-7 button bing-maps pushpin

应该是这样的。单击图钉时。

enter image description here

这是我的XAML。

<my:Pushpin Name="pin1" Location="60.285323,24.943501" Template="{StaticResource normalPushPin}" MouseLeftButtonUp="Location1_Popup"/>

这是我的Location1_Popup方法。我不知道该写什么。

private void Location1_Popup(object sender, MouseButtonEventArgs e)
    {
        MessageBox.Show("Location1 has been clicked");
    }

提前致谢。

1 个答案:

答案 0 :(得分:0)

您现在需要在MouseDown事件中显示您的弹出窗口。

例如,请查看源代码。

http://www.windowsphonegeek.com/upload/articles/WPPinPopup-Alternatives.zip

enter image description here

private void Location1_Popup(object sender, MouseButtonEventArgs e)
    {
        BlackRegionWithContent.Visible = Visibility.Visible;
    }