Beispiel #1
0
 /// <summary>
 /// Genera reporte de incidencias
 /// </summary>
 private void btnImprimir_Click(object sender, RoutedEventArgs e)
 {
     try
     {
         using (var context = new BibliotecaContext())
         {
             CTRReporte reporte = new CTRReporte();
             var        data    = context.GetIncidencia(instancia.idUsuario).ToList();
             reporte.crearReporte("DataSet1", "SIB.Reportes.ReporteIncidencias.rdlc", data);
             reporte.ShowDialog();
         }
     }
     catch (Exception ex)
     {
         ex.GuardarError();
     }
 }