Articles in this section
Category / Section

How to customize column headers in WinForms MultiColumnComboBox?

1 min read

Customize the column header

The MultiColumnComboBox can customize the HeaderBackColor, HeaderTextColor, ListBox BackColor and BorderStyle and so on.

C#

this.multiColumnComboBox1.ListBox.HeaderBackColor = Color.Lime;
this.multiColumnComboBox1.ListBox.HeaderTextColor = Color.Red;
this.multiColumnComboBox1.ListBox.BackColor = Color.Yellow;
this.multiColumnComboBox1.ListBox.BorderStyle = BorderStyle.Fixed3D;

VB

Me.multiColumnComboBox1.ListBox.HeaderBackColor = Color.Lime
Me.multiColumnComboBox1.ListBox.HeaderTextColor = Color.Red
Me.multiColumnComboBox1.ListBox.BackColor = Color.Yellow
Me.multiColumnComboBox1.ListBox.BorderStyle = BorderStyle.Fixed3D

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied