how to set a text box for inputing password in winforms? Also I want to show \"Capslock is ON\" popup if capslock is on.
I want something like
Just set the property of textbox that is PasswordChar and set the * as a property of textbox. That will work for password.
*
passwordtextbox.PasswordChar = '*';
where passwordtextbox is the text box name.
passwordtextbox