private void txtVerificar_KeyPress(object sender, KeyPressEventArgs e) { Validar.Espacio(e); }
private void txtContraseña_KeyPress(object sender, KeyPressEventArgs e) { Validar.Espacio(e); }
private void txtTelefono_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); Validar.Espacio(e); }
private void txtUsuario_KeyPress(object sender, KeyPressEventArgs e) { Validar.Espacio(e); }
private void txtIdentidad_KeyPress_1(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); Validar.Espacio(e); }