我想显示图像的中心区域,如果图像的高度和宽度大于屏幕尺寸

时间:2019-07-14 05:58:30

标签: xamarin xamarin.forms

我正在通过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>

我想做下图所示的事情。

image

0 个答案:

没有答案