gpt4 book ai didi

maps - 如何在 Windows Phone 8.1 map 控件中显示控件按钮

转载 作者:行者123 更新时间:2023-12-01 06:14:34 26 4
gpt4 key购买 nike

基本上我想在我的 Windows Phone 8.1 map 控件中显示内置控件按钮,如放大或缩小等就像谷歌地图中的这种类型。有什么办法吗?

enter image description here

这是我的 map 代码

   <Maps:MapControl MapServiceToken="abcdef-abcdefghijklmno" Grid.Row="1" Margin="10,10,10,10" x:Name="MapControl" >
<Maps:MapItemsControl x:Name="MapIcons">
<Maps:MapItemsControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" >
<Image Source="{Binding picture}" Width="50" Height="50" ></Image>
<TextBlock Maps:MapControl.Location="{Binding Location}" Text="{Binding name}" Foreground="Black" FontSize="15"/>
</StackPanel>
</DataTemplate>
</Maps:MapItemsControl.ItemTemplate>
</Maps:MapItemsControl>
</Maps:MapControl>

最佳答案

为什么不把它显示在 map 上方,像这样:

<Grid>
<Maps:MapControl ...
<StackPanel HorizontalAlignment="Right" VerticalAlignment="Bottom">
<Button> ...
<Button> ...
<Button> ...
</StackPanel>
</Grid

关于maps - 如何在 Windows Phone 8.1 map 控件中显示控件按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28280508/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com