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
private void cbShowHide_CheckedChanged(object sender, EventArgs e)
{
if (cbShowHide.Checked)
{
txtPin.UseSystemPasswordChar = PasswordPropertyTextAttribute.No.Password;
}
else
{
//Hides Textbox password
txtPin.UseSystemPasswordChar = PasswordPropertyTextAttribute.Yes.Password;
}
}
Copy this code to show and hide your textbox using a checkbox