如何为数字分配更多空间

时间:2017-08-14 23:30:39

标签: xamarin xamarin.forms xamarin.forms-styles

这是我创建的XAML代码:

<ViewCell>
   <Grid VerticalOptions="CenterAndExpand" Padding="20, 0">
      <Label HorizontalOptions="StartAndExpand" Text="ABC" />
      <Entry Keyboard="Numeric" VerticalOptions="Center" HorizontalOptions="End" />
   </Grid>
</ViewCell>

当我运行代码时,窗口的数据输入区域仅足以显示一位数。有没有办法可以扩展它,这样我就可以输入三位数字了?

1 个答案:

答案 0 :(得分:2)

设置WidthRequest值,并尝试更改Horizo​​ntalOptions

<Entry Keyboard="Numeric" VerticalOptions="Center" WidthRequest="100" HorizontalOptions="FillAndExpand" />