0

我在 StackLayout 中添加了标签。我为 StackLayout 设置了 HeightRequest,为 Label 设置了长文本。

我想裁剪标签中的超出文本。但它会在 StackLayout 之外呈现。怎么限制。

我不想为标签设置 HeightRequest。

<StackLayout Margin="10" HeightRequest="42" BackgroundColor="Yellow">
               <Label  VerticalOptions="Center" Text="A minimum 5 characters password contains a combination of uppercase and lowercase letter and number are required. A minimum 5 characters password contains a combination of uppercase and lowercase letter and number are required."/>

           </StackLayout>
4

2 回答 2

0

为了根据上面代码中的 StackLayout 设置标签高度,请设置Orientation="Horizontal"for stackLayout。

于 2021-03-26T08:04:05.083 回答
0

a 中子视图的大小和位置StackLayout取决于子视图HeightRequestWidthRequest属性的值,以及它们HorizontalOptionsVerticalOptions属性的值。

在垂直 StackLayout 中,子视图在未明确设置其大小时扩展以填充可用宽度。同样,在水平 StackLayout 中,子视图在未明确设置其大小时会展开以填充可用高度。

有关更多详细信息,您可以参考 MS 文档。https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/layouts/stacklayout

于 2021-03-26T07:51:25.203 回答