In the properties section I changed the passwordChar, but i want to change the passwordChar to nothing.
Something like this:
private void passwordG_MouseHover(object sender, EventArgs e)
{
passwordG.PasswordChar = none;
}
In the properties section I changed the passwordChar, but i want to change the passwordChar to nothing.
Something like this:
private void passwordG_MouseHover(object sender, EventArgs e)
{
passwordG.PasswordChar = none;
}
if you mean you want to change it back to nothing. then we have char \0
private void passwordG_MouseHover(object sender, EventArgs e)
{
passwordG.PasswordChar = '\0';
}