Hey,
I use an UltraGrid and would like to change the background color of row spaces. The row spaces can be setup by using RowSpacingAfter and RowSpacingBefore of a UltraGridBand's UltraGridOverride. Can someone please give me some help please?
Your help is greatly appreciated!
Best Regards,Shaolin
Hello Shaolin,
The grid does not have a row space UIElement, it has a background area and the space between rows allows the background area of the grid to show through.
So, what you can do in this case is change the grid’s background color in the Appearance object of the DisplayLayout
this.ultraGrid1.DisplayLayout.Appearance.BackColor = Color.Red;