I have this method which does certain checks and applies a color code on the datagridview rows making certain rows Red, some Blue etc.
Lets call it ImposeColorGrouping().
When I filter columns and redraw (this is done) the datagridview, the coloring of rows is lost.
I am looking for an event to invoke the ImposeColorGrouping() method.
I tried Paint event, but that makes other controls on screen unstable (doesn’t draw some them at all).
Set the color of each row during the RowsAdded event.