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 Header back color, header text color, list box back color and border style 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.LimeMe.multiColumnComboBox1.ListBox.HeaderTextColor = Color.RedMe.multiColumnComboBox1.ListBox.BackColor = Color.YellowMe.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 sign in to leave a comment
Access denied
Access denied