I need to USE hidden inserted symbols in my textbox and show "password" like "*******".
But after this I will use inserted password for login. I can not use PasswordBox because it don't have need touch event.
How do I do it ?
I need to USE hidden inserted symbols in my textbox and show "password" like "*******".
But after this I will use inserted password for login. I can not use PasswordBox because it don't have need touch event.
How do I do it ?
You should check out this answer to a similar question: https://stackoverflow.com/a/481097/4192732
You basically need a third-party extension to avoid using the passwordbox, as there are no first-party methods of masking a WPF textbox.