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
535
Cell Appearance attrs not sticking
posted

I set a cells background difference once modified with this code in UpdateCellEvent:

       e.Cell.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
       e.Cell.SelectedAppearance.BackColor = System.Drawing.Color.LightSteelBlue;

However when I select the row, (or another cell in the row) it redraws it in white.  I would have assumed that the cell setting would override the row default?

     this.ultraGrid1.DisplayLayout.Override.SelectedCellAppearance = appearance44;

Peter