Skip to content

Commit 54c9e0d

Browse files
Merge pull request #1 from vijayarasan/master
How to export the WinForms DataGrid StackedHeaders with different back color to Excel and PDF?
2 parents 6493622 + 2715b04 commit 54c9e0d

14 files changed

+880
-2
lines changed

README.md

Lines changed: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,68 @@
1-
# How-to-export-windows-forms-data-grid-stacked-headers-with-different-back-color-in-excel-and-pdf
2-
How to export the Windows Forms DataGrid StackedHeaders with different back color in Excel and PDF?
1+
# How to export the WinForms DataGrid StackedHeaders with different back color to Excel and PDF?
2+
3+
## About the sample
4+
This example illustrates how to export the WinForms DataGrid StackedHeaders with different back color to Excel and PDF
5+
6+
By default, actual value only will be exported to Pdf. You can customize StackedHeader cellstyle by using PdfGridCellStyle instance through CellExporting event in PdfExportingOptions.
7+
8+
```C#
9+
private void PDF_Exporting(object sender, EventArgs e)
10+
{
11+
PdfExportingOptions options = new PdfExportingOptions();
12+
options.ExportStackedHeaders = true;
13+
options.CellExporting += options_CellExporting;
14+
var document = sfDataGrid1.ExportToPdf(options);
15+
document.Save("Sample.pdf");
16+
}
17+
18+
private void options_CellExporting(object sender, DataGridCellPdfExportingEventArgs e)
19+
{
20+
if(e.CellType==ExportCellType.StackedHeaderCell)
21+
{
22+
if(e.CellValue.ToString()=="Order Details")
23+
{
24+
var cellStyle = new PdfGridCellStyle();
25+
cellStyle.BackgroundBrush = PdfBrushes.DarkCyan;
26+
cellStyle.TextBrush = PdfBrushes.White;
27+
e.PdfGridCell.Style = cellStyle;
28+
}
29+
else if (e.CellValue.ToString() == "Customer Details")
30+
{
31+
var cellStyle = new PdfGridCellStyle();
32+
cellStyle.BackgroundBrush = PdfBrushes.LightCyan;
33+
e.PdfGridCell.Style = cellStyle;
34+
}
35+
else if (e.CellValue.ToString() == "City Details")
36+
{
37+
var cellStyle = new PdfGridCellStyle();
38+
cellStyle.BackgroundBrush = PdfBrushes.DarkGray;
39+
cellStyle.TextBrush = PdfBrushes.White;
40+
e.PdfGridCell.Style = cellStyle;
41+
}
42+
}
43+
44+
}
45+
```
46+
47+
48+
Exporting SfDataGrid StackedHeaders with different back colors by using ExcelExportingOptions by defining the cell style for the StackedHeader cell range.
49+
50+
```C#
51+
52+
private void Excel_Exporting(object sender, EventArgs e)
53+
{
54+
var options = new ExcelExportingOptions();
55+
var excelEngine = sfDataGrid1.ExportToExcel(sfDataGrid1.View, options);
56+
var workBook = excelEngine.Excel.Workbooks[0];
57+
workBook.Worksheets[0].Range["A1:A1"].CellStyle.Color = Color.DarkCyan;
58+
workBook.Worksheets[0].Range["A1:A1"].CellStyle.Font.Color = ExcelKnownColors.White;
59+
workBook.Worksheets[0].Range["B1:C1"].CellStyle.Color = Color.LightCyan;
60+
workBook.Worksheets[0].Range["B1:C1"].CellStyle.Font.Color = ExcelKnownColors.Black;
61+
workBook.Worksheets[0].Range["D1:E1"].CellStyle.Color = Color.DarkGray;
62+
workBook.Worksheets[0].Range["D1:E1"].CellStyle.Font.Color = ExcelKnownColors.White;
63+
workBook.SaveAs("SampleRange.xlsx");
64+
}
65+
```
66+
67+
## Requirements to run the demo
68+
Visual Studio 2015 and above versions

SfDataGridDemo/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
5+
</startup>
6+
</configuration>

SfDataGridDemo/Form1.Designer.cs

Lines changed: 89 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SfDataGridDemo/Form1.cs

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
using Syncfusion.Pdf.Graphics;
2+
using Syncfusion.Pdf.Grid;
3+
using Syncfusion.WinForms.DataGrid;
4+
using Syncfusion.WinForms.DataGrid.Enums;
5+
using Syncfusion.WinForms.DataGridConverter;
6+
using Syncfusion.WinForms.DataGridConverter.Events;
7+
using Syncfusion.XlsIO;
8+
using System;
9+
using System.Collections.Generic;
10+
using System.ComponentModel;
11+
using System.Data;
12+
using System.Drawing;
13+
using System.Linq;
14+
using System.Text;
15+
using System.Threading.Tasks;
16+
using System.Windows.Forms;
17+
18+
namespace DataGrid_WF
19+
{
20+
public partial class Form1 : Form
21+
{
22+
public Form1()
23+
{
24+
InitializeComponent();
25+
OrderInfoCollection orderInfoCollection = new OrderInfoCollection();
26+
this.sfDataGrid1.DataSource = orderInfoCollection.Orders;
27+
28+
//Creating object for a stacked header row.
29+
var stackedHeaderRow1 = new StackedHeaderRow();
30+
31+
//Adding stacked column to stacked columns collection available in stacked header row object.
32+
stackedHeaderRow1.StackedColumns.Add(new StackedColumn() { ChildColumns = "OrderID", HeaderText = "Order Details" });
33+
stackedHeaderRow1.StackedColumns.Add(new StackedColumn() { ChildColumns = "CustomerID,CustomerName,", HeaderText = "Customer Details" });
34+
stackedHeaderRow1.StackedColumns.Add(new StackedColumn() { ChildColumns = "Country,ShipCity", HeaderText = "City Details" });
35+
36+
//Adding stacked header row object to stacked header row collection available in SfDataGrid.
37+
sfDataGrid1.StackedHeaderRows.Add(stackedHeaderRow1);
38+
39+
this.sfDataGrid1.DrawCell += SfDataGrid1_DrawCell;
40+
}
41+
42+
private void SfDataGrid1_DrawCell(object sender, Syncfusion.WinForms.DataGrid.Events.DrawCellEventArgs e)
43+
{
44+
if ((e.DataRow as DataRowBase).RowType == RowType.StackedHeaderRow)
45+
{
46+
if (e.CellValue.ToString() == "Order Details")
47+
{
48+
e.Style.BackColor = Color.DarkCyan;
49+
e.Style.TextColor = Color.White;
50+
}
51+
if (e.CellValue.ToString() == "Customer Details")
52+
{
53+
e.Style.BackColor = Color.LightCyan;
54+
}
55+
if (e.CellValue.ToString() == "City Details")
56+
{
57+
e.Style.BackColor = Color.DarkGray;
58+
e.Style.TextColor = Color.White;
59+
}
60+
}
61+
}
62+
63+
64+
65+
66+
private void Excel_Exporting(object sender, EventArgs e)
67+
{
68+
var options = new ExcelExportingOptions();
69+
var excelEngine = sfDataGrid1.ExportToExcel(sfDataGrid1.View, options);
70+
var workBook = excelEngine.Excel.Workbooks[0];
71+
workBook.Worksheets[0].Range["A1:A1"].CellStyle.Color = Color.DarkCyan;
72+
workBook.Worksheets[0].Range["A1:A1"].CellStyle.Font.Color = ExcelKnownColors.White;
73+
workBook.Worksheets[0].Range["B1:C1"].CellStyle.Color = Color.LightCyan;
74+
workBook.Worksheets[0].Range["B1:C1"].CellStyle.Font.Color = ExcelKnownColors.Black;
75+
workBook.Worksheets[0].Range["D1:E1"].CellStyle.Color = Color.DarkGray;
76+
workBook.Worksheets[0].Range["D1:E1"].CellStyle.Font.Color = ExcelKnownColors.White;
77+
workBook.SaveAs("SampleRange.xlsx");
78+
79+
}
80+
81+
82+
private void PDF_Exporting(object sender, EventArgs e)
83+
{
84+
PdfExportingOptions options = new PdfExportingOptions();
85+
options.ExportStackedHeaders = true;
86+
options.CellExporting += options_CellExporting;
87+
var document = sfDataGrid1.ExportToPdf(options);
88+
document.Save("Sample.pdf");
89+
}
90+
91+
private void options_CellExporting(object sender, DataGridCellPdfExportingEventArgs e)
92+
{
93+
if(e.CellType==ExportCellType.StackedHeaderCell)
94+
{
95+
if(e.CellValue.ToString()=="Order Details")
96+
{
97+
98+
var cellStyle = new PdfGridCellStyle();
99+
cellStyle.BackgroundBrush = PdfBrushes.DarkCyan;
100+
cellStyle.TextBrush = PdfBrushes.White;
101+
e.PdfGridCell.Style = cellStyle;
102+
}
103+
else if (e.CellValue.ToString() == "Customer Details")
104+
{
105+
106+
var cellStyle = new PdfGridCellStyle();
107+
cellStyle.BackgroundBrush = PdfBrushes.LightCyan;
108+
e.PdfGridCell.Style = cellStyle;
109+
}
110+
else if (e.CellValue.ToString() == "City Details")
111+
{
112+
var cellStyle = new PdfGridCellStyle();
113+
cellStyle.BackgroundBrush = PdfBrushes.DarkGray;
114+
cellStyle.TextBrush = PdfBrushes.White;
115+
e.PdfGridCell.Style = cellStyle;
116+
}
117+
}
118+
119+
}
120+
}
121+
}

0 commit comments

Comments
 (0)