我怎样才能分配更多 space 给一个数字
How can I allocate more space to a numeric
这是我创建的 XAML 代码:
<ViewCell>
<Grid VerticalOptions="CenterAndExpand" Padding="20, 0">
<Label HorizontalOptions="StartAndExpand" Text="ABC" />
<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" />
</Grid>
</ViewCell>
当我 运行 代码时 window 的数据输入区域仅够显示一位数字。有什么方法可以扩展它,让我可以输入三位数吗?
设置 WidthRequest 值,并尝试更改 HorizontalOptions
<Entry Keyboard="Numeric" VerticalOptions="Center" WidthRequest="100" HorizontalOptions="FillAndExpand" />
这是我创建的 XAML 代码:
<ViewCell>
<Grid VerticalOptions="CenterAndExpand" Padding="20, 0">
<Label HorizontalOptions="StartAndExpand" Text="ABC" />
<Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" />
</Grid>
</ViewCell>
当我 运行 代码时 window 的数据输入区域仅够显示一位数字。有什么方法可以扩展它,让我可以输入三位数吗?
设置 WidthRequest 值,并尝试更改 HorizontalOptions
<Entry Keyboard="Numeric" VerticalOptions="Center" WidthRequest="100" HorizontalOptions="FillAndExpand" />