private void btn_AgregarDictamen_Click(object sender, RoutedEventArgs e) { int index = dgReportes.SelectedIndex; if (index >= 0) { Reporte reporte = listReporte[index]; int dictamenVer = ReporteDAO.verificaExistenciaDictamen(reporte.IdReporte); if (dictamenVer == 0) { DictaminarReporte nuevoDictamen = new DictaminarReporte(this, reporte, personal); nuevoDictamen.ShowDialog(); bool resultado = nuevoDictamen.Resultado; if (resultado) { CargaReportes(); } } else { MessageBox.Show("Ya existe un dictamen"); } } }