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