如何在Xamarin.Forms中显示框架内图像的一部分

问题描述 投票:1回答:1

在Xamarin.Forms中,如何在框架内仅显示较大图像的特定部分?

让我说,例如要显示右下象限,如下所示:

图片:“StrandsnäckanGlass&Café”

框架:“

我想要的部分(例如右下象限):“Strandsnäckan&Frame”

要显示(内含部分图像的框架):“Strandsnäckan右下象限”]​​>

我的代码(双边框仅用于较粗的边框):

<Frame BorderColor="#880014" BackgroundColor="#880014" Padding="4">
    <Frame BorderColor="#880014" BackgroundColor="#FFFFFF" Padding="0">
        <!--
        An Image something like this...
        <Image Source="{local:ImageResource SGC.Resources.SGCLogo.png}" Aspect="Fill" ... />
        -->
    </Frame>
</Frame>

在Xamarin.Forms中,如何在框架内仅显示较大图像的特定部分?可以说我想要显示右下象限,像这样:图像:框架:我想要的部分(...

image xaml xamarin xamarin.forms crop
1个回答
0
投票

解决方案是使用具有比例值的<AbsoluteLayout>

© www.soinside.com 2019 - 2024. All rights reserved.