private bool Validar() { MyErrorProvider.Clear(); bool paso = true; if (string.IsNullOrWhiteSpace(EstudianteTextBox.Text)) { MyErrorProvider.SetError(EstudianteTextBox, "El campo estudiante no puede estar vacio"); EstudianteTextBox.Focus(); paso = false; } if (this.Detalle.Count == 0) { MyErrorProvider.SetError(DetalleDataGridView, "Debe de agregar una categoria al detalle"); DetalleDataGridView.Focus(); paso = false; } return(paso); }