こんな感じになります。画鋲がクリックされたとき。
これは私の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");
}
前もって感謝します。