0

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

在此处输入图像描述

这是我的 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");
    }

提前致谢。

4

1 回答 1

0

您现在需要使您的弹出窗口在 MouseDown 事件中可见。

例如,请查看源代码。

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

在此处输入图像描述

private void Location1_Popup(object sender, MouseButtonEventArgs e)
    {
        BlackRegionWithContent.Visible = Visibility.Visible;
    }
于 2012-11-27T13:58:13.617 回答