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
是默认值,因此无需指定。