-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCategoriesReport.cs
34 lines (30 loc) · 1.6 KB
/
CategoriesReport.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using DevExpress.XtraReports.UI;
namespace CustomCachedDocumentSourceSerialization {
public partial class CategoriesReport : DevExpress.XtraReports.UI.XtraReport {
Dictionary<int, List<int>> pageAdditionalData = new Dictionary<int, List<int>>();
public CategoriesReport() {
InitializeComponent();
this.PrintingSystem.XlSheetCreated += PrintingSystem_XlSheetCreated;
this.PrintingSystem.AddService(typeof(CustomPageDataService), new CustomPageDataService(pageAdditionalData));
}
void PrintingSystem_XlSheetCreated(object sender, DevExpress.XtraPrinting.XlSheetCreatedEventArgs e) {
var serviceProvider = PrintingSystem as IServiceProvider;
CustomPageDataService customPageDataService = null;
if (serviceProvider != null && (customPageDataService = serviceProvider.GetService(typeof(CustomPageDataService)) as CustomPageDataService) != null) {
customPageDataService.PrintingSystem_XlSheetCreated(sender, e);
}
}
private void CategoryId_PrintOnPage(object sender, PrintOnPageEventArgs e) {
var cell = sender as XRTableCell;
int categoryNumber;
if (cell != null && int.TryParse(cell.Text, out categoryNumber)) {
if (!pageAdditionalData.ContainsKey(e.PageIndex)) {
pageAdditionalData[e.PageIndex] = new List<int>();
}
pageAdditionalData[e.PageIndex].Add(categoryNumber);
}
}
}
}