Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how do you get a windows 8 store app to display only a numeric keypad? I want the user to see only a numeric keypad when they click into a TextBox

share|improve this question
What have you tried? – madth3 Nov 8 '12 at 1:07

1 Answer

You have to set the input scope on the element e.g.

      <TextBox x:Name="txtBox" InputScope="Number" />

Keep in mind this will only get the number keyboard. The user could still manually change to the alphanumeric keyboard and input text. You will still need to validate the entry.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.