If we've applied styling (e.CellStyle.BackColor
say) to some rows via the CellFormatting event of a DataGridView, is it then possible to detect that styling at a later stage?
For example, currently we use a generic bloc of code to handle printing and exporting to Excel for any and all our DataGridViews. Until now the code hasn't catered for any styling.
So we want to add it in.
If we check the .DefaultCellStyle
of the row or cell then our styling doesn't show up (it just shows as 0 or Black, which is completely wrong).
I assume that's because we've applied the styling via a CellFormatting event, instead of embedding it into the DefaultCellStyle.
Unfortunately I could not find a complete solution to your issue, only a work around.
Some experimenting with the CellFormatting event using the example from MSDN resulted in me seeing exactly what you were seeing - the
BackColor
was clearly being set but theCellStyle
was not reflecting that. 1The work around I found was to not use the
DataGridViewCellFormattingEventArgs
CellStyle
property but to instead go straight to the grid. This has the downside that you now need to manually handle the case where you do not want to format the cell.I've got some code below showing this - it is again just modifying the MSDN code:
1. My theory is that this is similar to the confusion people have over the
.Refresh()
method, where theDataGridView
has two very distinct views of itself, one being the rectangle painted on screen and the other being the underlying data. With the.Refresh()
method you only repaint the rectangle, you do not refresh the data. I think this is like that - theCellFormatting
event only formats during painting and doesn't do anything to the grid styles themselves.