标签: c# xamarin xamarin.forms
我有这段代码:
<local:SportEntry x:Name="txtNumberCel" Font="Large" TextColor="Black" Opacity=".7" Text="{Binding Check}"
我想显示一个键盘数字,以便在Xamarin-Forms的texbox中插入一个数字。我尝试使用InputScope =“Number”和InputType =“numberDecimal,但不起作用。
答案 0 :(得分:3)
我认为此控件继承自Entry:
<Entry Keyboard="Numeric" ... />