How to write password in a textbox with *** in C # windows forms?

I need to make a Windows application and for singing I have a username and password. I want to know how to write a password without showing it, I want to show *** instead of characters in the password.

+3


source to share


1 answer


You can use PasswordChar

:



passwordtextbox.PasswordChar = '*';

      

+4


source







All Articles