Windows Phone 7 アプリケーションに bingmap があります。Bing マップには、多数の画鋲と情報ボックスがあります。現在、情報ボックスは見栄えがよくありません。
インフォボックスの XAML コードは次のとおりです。
<my:MapLayer>
<Grid x:Name="Infobox" Visibility="Collapsed" Margin="0,-115,-15,0">
<Border Width="300" Height="210" Background="Black" Opacity="0.7" BorderBrush="White" BorderThickness="2" CornerRadius="5"/>
<StackPanel Height="200" >
<Button Name="btnClose" Content="X" FontSize="17" Click="btnClose_click" HorizontalAlignment="Right" VerticalAlignment="Top" Background="Transparent" Foreground="White" BorderThickness="0" />
<Grid Height="180" Margin="5">
<Image Source="{Binding PropertyImage}" HorizontalAlignment="Left" Width="60" Height="80"></Image>
<TextBlock Text="{Binding Description}" FontSize="20" Width="220" TextWrapping="Wrap" Height="Auto" HorizontalAlignment="Right" Padding="5" />
</Grid>
</StackPanel>
</Grid>
</my:MapLayer>
出力は次のようになります
インフォボックスの高さを調整し、画像を揃える必要があります。誰でも私を助けることができますか?