Do you know how in many WP7 applications you can "stroke" a text field to hint at what the user should insert into it? I want to do this with a password. This is pretty trivial with the text box, I just modify the get and set the focus events to handle everything correctly, but in the password box the text appears only as locked dots (except for the last character, which is a nice touch).
Is there any way to do this? I thought about putting a text box on top of the password window and hiding it under a tap or something like that, but it seems pretty ugly.
Update: I really like the PhoneTextBox control in the silverlight toolbox, but it has no password options. I am really looking for a PasswordBox with watermark features. But it turned out to be much harder to find than I had hoped.
source
share