如果选中了radiobutton,则使用隐藏的密码字符

时间:2013-04-08 20:54:30

标签: visual-studio-2010

我想知道是否可以做类似的事情:

如果选中“RadioButton1”,则使用密码字符显示“Textbox2.text”中的文本。

这可能吗?

2 个答案:

答案 0 :(得分:1)

使用UseSystemPasswordChar属性:

Textbox2.UseSystemPasswordChar = (RadioButton1.Checked);

答案 1 :(得分:0)

if (RadioButton1.Checked)
{
     textBox2.PasswordChar = '*';
} else {
     textBox2.PasswordChar = '*';
}

您可以将此代码放在RadioButton CheckedChanged事件中......