private void EsCURP(object sender, TextChangedEventArgs e) { string curp = ((TextBox)sender).Text; if (ValidadorTexto.EsCURP(curp)) { ((TextBox)sender).BorderBrush = Brushes.Blue; } else { ((TextBox)sender).BorderBrush = Brushes.Red; } }
public bool HayCamposIncorrectos() { bool hayCamposIncorrectos = false; if (!ValidadorTexto.EsNombreCorrecto(nombres.Text) || !ValidadorTexto.EsNombreCorrecto(apellidos.Text) || !ValidadorTexto.EsTextoCorrecto(perfilProfesional.Text) || !ValidadorTexto.EsNumeroPersonal(numeroPersonal.Text) || !ValidadorTexto.EsNumeroValido(aniosExperiencia.Text) || !ValidadorTexto.EsCorreoElectronico(correo.Text) || !ValidadorTexto.EsCURP(curp.Text) || !ValidadorTexto.EsRFC(rfc.Text)) { hayCamposIncorrectos = true; } return(hayCamposIncorrectos); }