应该是这样的。单击图钉时。
这是我的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");
}
提前致谢。
答案 0 :(得分:0)
您现在需要在MouseDown事件中显示您的弹出窗口。
例如,请查看源代码。
http://www.windowsphonegeek.com/upload/articles/WPPinPopup-Alternatives.zip
private void Location1_Popup(object sender, MouseButtonEventArgs e)
{
BlackRegionWithContent.Visible = Visibility.Visible;
}