0

我正在开发 WP7 中的 Bing 地图应用程序,该应用程序从数据库中提取引脚数据,在地图上显示引脚。但是如何使用与引脚关联的数据填充。请告诉我如何在 WP7 中显示自定义信息框。任何示例请告诉我。

4

1 回答 1

0

请参阅下面的示例,希望您得到解决方案。

public partial class MainPage : PhoneApplicationPage
{
    public MainPage()
    {
        InitializeComponent();
        InitPage();
    }

    private void InitPage()
    {
        testMap.Center = new GeoCoordinate(42,42);
        testMap.ZoomLevel = 10;

        MapLayer pushPinLayer = new MapLayer();
        testMap.Children.Add(pushPinLayer);

        Pushpin pushpin = new Pushpin();

        pushpin.Tap += new EventHandler<GestureEventArgs>(pushpin_Tap);

        pushpin.Content = "SAMPLE";
        pushPinLayer.AddChild(pushpin, new GeoCoordinate(42, 42));

    }

    void pushpin_Tap(object sender, GestureEventArgs e)
    {
        MessageBox.Show("You Clicked here");
    }

}在此处输入图像描述

于 2012-07-27T04:41:01.253 回答