我正在通过api在UWP应用上显示图像,如果图像尺寸大于屏幕尺寸,则仅应显示中心区域。
我尝试过使用scrollview,但是它可以显示整个图像。
<ScrollView BackgroundColor="Teal">
<StackLayout Spacing="5"
HorizontalOptions="Fill"
VerticalOptions="FillAndExpand"
BackgroundColor="Transparent">
<Image Aspect="AspectFill" HorizontalOptions="Center" x:Name="imgPlayer"></Image>
</StackLayout>
</ScrollView>
我想做下图所示的事情。