它应该是这样的。单击图钉时。
这是我的 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");
}
提前致谢。