本文介绍了如何设置绝对布局的大小?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在屏幕的一角做一个绝对布局,并设置它的大小:widhtrequest = 60和heightrequest = 60

I want to make a absolutelayout in the corner of the screen,and set the size of it:widhtrequest=60 and heightrequest =60

在绝对值里面是一个框架和标签.

inside the absolute is a frame and label.

但是似乎绝对布局会根据其中的图像大小自动调整大小.

but it seems the absolutelayout is autosized according the Image size inside it.

如何调整尺寸?

推荐答案

您可以参考以下代码:

<AbsoluteLayout x:Name="absLayout">
        <AbsoluteLayout x:Name="box" BackgroundColor="Blue"   WidthRequest="60" HeightRequest="60" >
            <Image BackgroundColor="Olive"  AbsoluteLayout.LayoutBounds="0,0, 50, 50" Source="test.jpg"
            AbsoluteLayout.LayoutFlags="PositionProportional" />
        </AbsoluteLayout>
    </AbsoluteLayout>

这篇关于如何设置绝对布局的大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 21:50