Dabiel Kabuto
Dabiel Kabuto

Reputation: 2862

How configure virtual keyboard in Windows 8?

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

Answers (2)

Jan Hommes
Jan Hommes

Reputation: 5152

You can set the InputScope on the textbox.

<TextBox InputScope="Number" />

Upvotes: 2

Nico Schertler
Nico Schertler

Reputation: 32667

You can define different input scopes for your text boxes.

Upvotes: 2

Related Questions