Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
620
How to stop a row from redrawing until all changes are complete
posted

The following two lines of code cause flickering (text jumps from black to white to black again).

row.Band.Layout.Grid.DisplayLayout.Override.ActiveRowAppearance.Reset();
row.Band.Layout.Grid.DisplayLayout.Override.ActiveRowAppearance.ForeColor = Color.Black;

Is there some way of telling the row NOT to redraw itself immediately after the Reset()?

I was trying BeginUpdate/EndUpdate on the grid level, but that is for data changes.