2011-06-10 25 views

回答

0

我不知道你是否可以讓它工作,但我可以做到這幾行XAML代碼和綁定。

<bing:MapItemsControl ItemsSource="{Binding LocationsList}"> 
        <bing:MapItemsControl.ItemTemplate> 
         <DataTemplate> 
          <bing:Pushpin Location="{Binding Location}" Content="{Binding Content}">          
          </bing:Pushpin> 
         </DataTemplate> 
        </bing:MapItemsControl.ItemTemplate> 
       </bing:MapItemsControl> 
相關問題