/// <summary> /// Clic en el botón de terminar. /// </summary> private void btnTerminar_Click(object sender, EventArgs e) { try { Gestion gestion = (Gestion)dgvGestiones.SelectedRows[0].DataBoundItem; frmTerminacionGestiones formulario = new frmTerminacionGestiones(gestion); formulario.ShowDialog(this); } catch (Excepcion ex) { ex.mostrarMensaje(); } }
/// <summary> /// Mostrar la ventana de modificación. /// </summary> private void mostarVentanaModificacion() { try { Gestion gestion = (Gestion)dgvGestiones.SelectedRows[0].DataBoundItem; frmTerminacionGestiones formulario = new frmTerminacionGestiones(gestion, _supervisor); formulario.ShowDialog(this); } catch (Excepcion ex) { ex.mostrarMensaje(); } }