How to change soft input panel (SIP) to digits only?

346 Views Asked by At

I've use the "Digits" and "Numeric" input scopes on the emulator for windows phone7 but on the actual device it ends up being the default input scope.

How do I change it to "Numeric" on the actual device? Is there something that I'm missing?

2

There are 2 best solutions below

2
On BEST ANSWER

InputScope="TelephoneNumber" works on both Mango and NoDo.

0
On

Here is the full code:

InputScope scope = new InputScope();
InputScopeName scopeName = new InputScopeName();
scopeName.NameValue = InputScopeNameValue.Number;
scope.Names.Add(scopeName);

tblInputField.Inputscope = scope;