I am developing a windows phone 7 application.

I have requirement where there is a password text box and when user starts typing the letters into the text box, each letter should appear as it is for 1 sec and then get converted to password dot (.).

There should be some delay such that user should be able to see what he has typed for one second and then it should be masked.

In android there is a way mHandler.postDelayed(new SetPassword(), 1000);

I would like to do it in a similar fashion for Windows Phone 7 as well.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use a timer that runs when the login page comes. With that help u can always delay and display the dots and mask it when ever timer stops.

link|improve this answer
feedback

This is a default behavior in PasswordBox control to show what the user type for a few moments. You need to set custom delay or you just don't find that control?

link|improve this answer
1  
I want that delay for TextBox but not password box.Is there anyway to do that??? – EnthuDeveloper Dec 17 '11 at 9:06
Perhaps manually, with a DispatcherTimer – Ku6opr Dec 17 '11 at 9:34
So, is it not possible to do it without timer? – EnthuDeveloper Dec 17 '11 at 9:38
1  
I want to either have a numeric keypad to passwordbox or be able to set delay to Textbox. – EnthuDeveloper Dec 17 '11 at 9:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.