水平布局 .net MAUI 中的条目不占 100% 宽度

问题描述 投票:0回答:1
.net xaml maui
1个回答
0
投票

StackLayout

中的组件仅占用其所需的空间。
您可以尝试使用 
Grid
 来代替。

<!-- Account Type Row --> <Grid Padding="0,10,0,10" ColumnDefinitions="Auto, *"> <Label Grid.Column="0" Text="Account Type" VerticalTextAlignment="Center" WidthRequest="100"></Label> <Entry Grid.Column="1" Text="Account Type"></Entry> </Grid>
附注不要再使用

FillAndExpand

了。它已被弃用。 
Fill
 是默认值,因此无需指定。

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