Tab Text in Windows Forms ColorUI
27 Apr 20211 minute to read
The default tab text of the ColorGroups can be set using the below properties.
ColorUIControl Properties | Description |
---|---|
CustomTabName | Set the text displayed on the custom colors tab. The tab name can be reset using ResetCustomTabName() method. |
StandardTabName | Set the text displayed on the Standard colors tab.The tab name can be reset using ResetStandardTabName() method. |
SystemTabName | Set the text displayed on the System colors tab.The tab name can be reset using ResetSystemTabName() method. |
UserTabName | Set the text displayed on the User colors tab.The tab name can be reset using ResetUserTabName() method. |
this.colorUIControl1.StandardTabName = "Web Layout";
this.colorUIControl1.SystemTabName = "System Colors";
this.colorUIControl1.UserTabName = "User Defined";
this.colorUIControl1.CustomTabName = "Palettes";
Me.colorUIControl1.StandardTabName = "Web Layout"
Me.colorUIControl1.SystemTabName = "System Colors"
Me.colorUIControl1.UserTabName = "User Defined"
Me.colorUIControl1.CustomTabName = "Palettes"
NOTE
We can also change the font style of the tab text using ColorUIControl.Font property.