Reputation: 441
I am developing windows phone 7 application where i need to put the input scope of password box as numeric, say in case of ATM pin, but there is no way seen as of now where i can show numeric keypad for inputting pin or no way to assign asteric characters to textBox with numeric input scope. Is there any workaround for the same, or will it be supported in mango version of WP7?
Upvotes: 1
Views: 1618
Reputation: 26347
You can use the NumericPassword InputScope.
But as you figured out, you need a custom TextBox
implementation. I would suggest using the PhoneTextBox
from the Silverlight Toolkit
Upvotes: 3