jueves, 6 de noviembre de 2014

C# - Como ocultar el contenido de un textbox como si fuera una contraseña

if (textBox1.UseSystemPasswordChar == false)
    textBox1.UseSystemPasswordChar = true;
else
textBox1.UseSystemPasswordChar = false;

No hay comentarios.:

Publicar un comentario