我想知道是否可以做类似的事情:
如果选中“RadioButton1”,则使用密码字符显示“Textbox2.text”中的文本。
这可能吗?
答案 0 :(得分:1)
Textbox2.UseSystemPasswordChar = (RadioButton1.Checked);
答案 1 :(得分:0)
if (RadioButton1.Checked)
{
textBox2.PasswordChar = '*';
} else {
textBox2.PasswordChar = '*';
}
您可以将此代码放在RadioButton CheckedChanged事件中......