Friday, May 15, 2009

Password Textbox C#

ทำ textbox ให้เป็น textbox password

Property textbox

# UseSystemPasswordChar กำหนดว่าจะให้แสดงพาสเวิร์ดโดยใช้ char ของระบบหรือไม่



# PasswordChar คือ เรากำหนดเองว่าพาสเวิร์ดจะแสดงเป็นอักษรอาไร



ทำ check box สำหรับเปิดเผย และไม่เปิดเผยข้อความพาสเวิร์ด




private void chbDisplayPassword_CheckedChanged(object sender, EventArgs e)
{
if (chbDisplayPassword.Checked)
{
txtPassword.UseSystemPasswordChar = false;
}
else
{
txtPassword.UseSystemPasswordChar = true;
}
}

No comments:

Post a Comment

Popular Posts