I have form of adding members in phone application page, in that form, one field is ZIP CODE, so how do I get keyboard of numbers on text changed event? thanks!!
Asked
Active
Viewed 273 times
0
-
What do you mean when you said "keyboard of numbeR"? The index of keyboard who user clicked? – MatDev8 Apr 09 '14 at 12:23
-
@MatDev8 I meant to say, if user click on that keyboard, NUMBERED keyboard should be displayed. – Viraj Shah Apr 09 '14 at 12:30
2 Answers
5
Check with this InputScope, Refer this
<TextBox Name="txtZipCode" >
<TextBox.InputScope>
<InputScope>
<InputScopeName NameValue="Number" />
</InputScope>
</TextBox.InputScope>
</TextBox>

LakshmiNarayanan
- 1,158
- 9
- 12
2
The answer given above in a single line could be
<TextBox Name="txtZipCode" InputScope="Number"/>

A.K.
- 3,321
- 1
- 15
- 27