How can I change the background color of the Infragistics' UltraGrid filter row?

Viewed 13680

Currently this is what it looks like:

enter image description here

I'd like to change that blue color, but I don't know what property to change.

enter image description here

I've tried changing what I think is the property to magenta or something that stands out in an attempt to find out what property I need, but so far no dice.

Any ideas?

3 Answers

I think you may be looking for something like this. In this example I'm making the selected row colors "disappear", but you can set them to any color you want.

'Make selected row look just like any other row
myUltraGrid.DisplayLayout.Override.ActiveRowAppearance.BackColor = Color.White
myUltraGrid.DisplayLayout.Override.ActiveRowAppearance.ForeColor = Color.Black

'Make selected cell look like any other cell
myUltraGrid.DisplayLayout.Override.ActiveCellAppearance.BackColor = Color.Black
myUltraGrid.DisplayLayout.Override.ActiveCellAppearance.ForeColor = Color.White
Related