在开发新的Windows Phone 8软件时,我遇到了这个问题。
我需要直接打开键盘到这个视图:
但我能做的就是这个(只关注一个文本框,这很容易!):
答案 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