Change input scope for Password text boxes on Windows Phone 7

2.5k Views Asked by At

How can you do the equivalent of changing the input scope on the password text boxes in WP7? They don't have an input scope field so I'm not sure how to do it.

I'd like to have a password box where you can only use digits as your password, like the phone lock screen.

Thanks

2

There are 2 best solutions below

0
On BEST ANSWER

There is no way to set the inputscope of the PasswordBox. If you really must do this you'll have to create your own control.

If making your own version of the phone lock screen I'd recommend looking at using a TextBlock and a number (12) of Buttons rather than a PasswordBox or TextBox.

0
On

Yes as Matt says, the easy thing to do would be to have the

textChanged events
keyUp event  
keyDown event

to manipulate the textbox.text property according to your requirement. This will be much easier than implementing a new control.