I am having bit of a problem with the properties of the FixedHeaderRow. I changed the font and BackColor of one of my columns, but wish the FixedHeaderRow to have it’s own colors and font.
The columns I have not already set, do change to the font and BackColor I want. Is there a way to override the column settings I have done for the FixedHeaderRow?
Example (the UIStyle of the grid is set to WindowsClassic);
gridControl2.Columns[“C1”].Font = new Font( “”, 8 | 1 );
gridControl2.Columns[“C1”].BackColor = Color.LightGray;
foldersColumnManagerRow.Font = new Font(foldersColumnManagerRow.Font, FontStyle.Bold);
foldersColumnManagerRow.BackColor = Color.DarkGray;
gridControl2.FixedHeaderRows.Add( foldersColumnManagerRow );
Imported from legacy forums. Posted by TVMed (had 2499 views)