How to Change C1Combo's Background and Foreground Colors of Caption Rows

This article will focus on how to change the background and foreground color of a C1Combo's header row (or caption row).

To do so, you can use the "C1Combo.HeadingStyle" property, as shown below:

'customize the style of Header row
C1Combo1.HeadingStyle.BackColor = Color.DarkSlateGray
C1Combo1.HeadingStyle.ForeColor = Color.White

Hunter Haaf