How to customize the Splitter color in the GroupBar?
3 Sep 20201 minute to read
Appearance settings
The following properties help customize the splitter color in the GroupBar.
this.groupBar1.StackedMode = true;
// To customize the splitter color
this.groupBar1.Splittercolor = Color.Red;
// To define whether to use default splitter color or customized color
this.groupBar1.EnableSplittercolorCustomization = true;
Me.groupBar1.StackedMode = True
' To customize the splitter color
Me.groupBar1.Splittercolor = Color.Red
' To define whether to use default splitter color or customized color
Me.groupBar1.EnableSplittercolorCustomization = True