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.
Hello,
You could take a look at the following link: http://community.infragistics.com/forums/t/15306.aspx.
Also the 'SuspendLayout()' and 'ResumeLayout()' methods of the 'UltraGrid' might help you to resolve your issue.
If the issue still persists please try to attach if possible a small sample project reproducing the above mentioned issue, I will be happy to take a look at it.
The example in the link just re-iterates the BeginUpdate/EndUpdate method I already spoke of. That is to hold back redraw und the data reloading is complete; not what I am doing.
SuspendLayout and ResumeLayout are not working in my example either, it seems.
Attached is my sample project.