I'm developing app for tablet with Win 8.1. I've got some TextBoxes with numeric input only and I need to popup numeric onscreen keyboard instead of standard one when entered. There's InputScope for WinPhone. Exists anything similar for Win 8.1?
Asked
Active
Viewed 3,320 times
1 Answers
0
Hi there is property InputScope="Number"
in Win 8.1 TextBox too.

Dimitar
- 76
- 4
-
Finally found it, it's for System.Windows.Controls.TextBox. Any idea of convert System.Windows.Forms.TextBox to System.Windows.Controls.TextBox? I've got them placed them to right position by Visual Studio – David Pivovar May 22 '15 at 13:26
-
What is you project type Windows Store App or Windows Form Application, because in windows store app you have Windows.UI.Xaml.Controls.TextBox and Windows store app is project type for windows 8.1 tablet application. – Dimitar May 22 '15 at 13:37
-
Windows Form App. The sponsor has been against xaml. – David Pivovar May 22 '15 at 13:50
-
So basically it will be a standard applications which will not be downloading from store. If you aiming tablet application you should consider use Windows Store Application. About InputScope i think you cannot achieve this thing. But you can check user input to be only numeric symbols. – Dimitar May 22 '15 at 14:04
-
Yeah, input is numeric only already. What about adding wpf component to the form and use Windows.UI.Xaml.Controls.TextBox there? – David Pivovar May 22 '15 at 14:42
-
You can try but on my Simulator your suggestion isnt working i dont have a real device to test it right now. But there is InputScope which accept Number type if you have real device you can try. – Dimitar May 22 '15 at 15:15