我只是尝试在我的 windows phone 8 应用程序中将 BitMapImage 绑定为 Image 控件的源。并将 Stretch 属性应用于 Uniform。但图像仍然显示拉伸。我怎样才能使图像适合它的原始尺寸。
这是我的代码:
<Image x:Name="ConversationImage" Width="200" Height="200" Visibility="{Binding ImageVisibility}" Source="{Binding ThumbImage}" Stretch="Uniform" VerticalAlignment="Center" HorizontalAlignment="Center"/>