我想添加一个点击即使是一个puship pin,它会显示一个弹出窗口,例如.. Message.Show窗口。
另外,我想要一个OnCLick导航选项。
以下是我的代码片段。
Pushpin palmerstonN = new Pushpin();
palmerstonN.Background = new SolidColorBrush(Colors.Brown);
palmerstonN.Location = new GeoCoordinate(-40.3541236542693, 175.596991862399);
palmerstonN.Content = "Arena Manawatu - Palmerston North";
this.map1.Children.Add(palmerstonN);
任何想法?
答案 0 :(得分:2)
PushPin有一个MouseLeftButtonUp事件,您可以使用它来处理推送上的点击。你可以这样做:
Pushpin palmerstonN = new Pushpin();
palmerstonN.Background = new SolidColorBrush(Colors.Brown);
palmerstonN.Location = new GeoCoordinate(-40.3541236542693, 175.596991862399);
palmerstonN.Content = "Arena Manawatu - Palmerston North";
palmerstonN.MouseLeftButtonUp += new MouseButtonEventHandler(palmerstonN_MouseLeftButtonUp);
this.map1.Children.Add(palmerstonN);
}
void palmerstonN_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
Messabox.Show("My messagebox");
}
我希望这有帮助!