Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WP7-Control to enter numeric data?

I've got a WP7 app where I need to enter large numeric data (6 digits and more) - is there some kind of advanced numeric control to enter large numbers comfortably?

like image 214
Sam Avatar asked Aug 08 '26 23:08

Sam


1 Answers

By comfortably, do you mean the keyboard that comes up? Or that you don't want to use a keyboard at all?

In Silverlight, I believe that one way to set the type of keyboard is set the scope of the input for the TextBox... so in XAML:

<TextBox InputScope=”Number” …/>

or for a phone keypad

<TextBox InputScope=”TelephoneNumber” …/>
like image 138
Chris Gomez Avatar answered Aug 10 '26 13:08

Chris Gomez