WP8 - 自动打开& 123选项的键盘

时间:2014-01-20 08:43:33

标签: c# windows-phone-7 windows-phone-8 keyboard

在开发新的Windows Phone 8软件时,我遇到了这个问题。

我需要直接打开键盘到这个视图:

enter image description here

但我能做的就是这个(只关注一个文本框,这很容易!):

https://imageshack.com/i/0ytaa6j

2 个答案:

答案 0 :(得分:1)

将TextBox InputScope属性设置为xaml代码中的数字

<TextBox InputScope="Digits " Name="txtNumbers" />

并且您的代码隐藏在代码行下面

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
   {
       txtNumbers.Focus();
   }

答案 1 :(得分:0)

检查此链接是否允许范围:

http://msdn.microsoft.com/en-us/library/system.windows.input.inputscopenamevalue%28VS.96%29.aspx

我相信你所追求的观点被称为“数字模式”;以下链接也有一些图像。

http://www.informit.com/articles/article.aspx?p=1706099&seqNum=2