Reputation: 2862
In an data entry application in Windows 8, the user uses massively the virtual keyboard. I need to optimize the data entry. Now, when an user enters in a field, the virtual keyboard appears. How can I configure the keyboard to show only numbers or numbers+letters from my app?
Some fields are numeric, then letters are not necessary.
I would like to configure the keyboard for each field in the form.
Upvotes: 0
Views: 631
Reputation: 5152
You can set the InputScope on the textbox.
<TextBox InputScope="Number" />
Upvotes: 2
Reputation: 32667
You can define different input scopes for your text boxes.
Upvotes: 2