这是我创建的XAML代码:
<ViewCell>
<Grid VerticalOptions="CenterAndExpand" Padding="20, 0">
<Label HorizontalOptions="StartAndExpand" Text="ABC" />
<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" />
</Grid>
</ViewCell>
当我运行代码时,窗口的数据输入区域仅足以显示一位数。有没有办法可以扩展它,这样我就可以输入三位数字了?
答案 0 :(得分:2)
设置WidthRequest值,并尝试更改HorizontalOptions
<Entry Keyboard="Numeric" VerticalOptions="Center" WidthRequest="100" HorizontalOptions="FillAndExpand" />