New to Telerik UI for WinForms? Start a free 30-day trial
Customizing Appearance
Updated over 6 months ago
Design Time
You can access and modify the style for the different elements in the RadToolbarFormControl by using the Element hierarchy editor. Select RadToolbarFormControl and click the small arrow on the top right position in order to open the Smart Tag. Then, select the Edit UI Elements option:

Programmatically
The following example demonstrates how you can access the CaptionFill and change its back color.
C#
this.ToolbarFormControl.ToolbarFormControlElement.CaptionFill.BackColor = Color.Red;
this.ToolbarFormControl.ToolbarFormControlElement.CaptionFill.GradientStyle = GradientStyles.Solid;
this.ToolbarFormControl.ToolbarFormControlElement.CaptionTextElement.ForeColor = Color.White;
