private void btnEditar_Click(object sender, EventArgs e) { if (!(this.dgvAluInsc.SelectedRows.Count.Equals(0))) { int IdInscripcion = ((Business.Entities.Curso)this.dgvAluInsc.SelectedRows[0].DataBoundItem).IdInscripcion; InscripcionMateria formEdit = new InscripcionMateria(AlumnoActual, IdInscripcion, ApplicationForm.ModoForm.Modificacion); formEdit.ShowDialog(); this.Listar(); } else this.Notificar("No hay fila seleccionada", "Por favor, seleccione una fila", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); }
private void btnNuevo_Click(object sender, EventArgs e) { InscripcionMateria form = new InscripcionMateria(AlumnoActual, ApplicationForm.ModoForm.Alta); form.ShowDialog(); this.Listar(); }