Is there a way to set the BackColor of the ColumnHeaders of a ListView?

link|improve this question

50% accept rate
I think based on the answers below, the answer is that there is no easy way to do it. – Jens Jul 7 '09 at 7:45
feedback

2 Answers

I assume you're talking about Windows here. AFAIK, the header background color is determined by the system, as the ListView is a common control.

You might be able to owner-draw the header. If you're using .NET, there's a DrawColumnHeader event that you might want to implement, but you'd have to owner draw the entire control (i.e. the items as well).

link|improve this answer
feedback

You need to override the WM_CTLCOLOR message, now since I don't know what are you using (MFC, C#) I cannot give you any more details.

For C# take a look at this (CodeProject: Customizing the header control in a ListView)

link|improve this answer
I'm using VB, but a C# answer will also do. – Jens Jul 7 '09 at 7:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.