New to Telerik UI for WinForms? Download free 30-day trial

Customizing Appearance

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:

WinForms RadToolbarForm Customizing Appearance at Design Time

Programmatically

The following example demonstrates how you can access the CaptionFill and change its back color.


this.ToolbarFormControl.ToolbarFormControlElement.CaptionFill.BackColor = Color.Red;
this.ToolbarFormControl.ToolbarFormControlElement.CaptionFill.GradientStyle = GradientStyles.Solid;
this.ToolbarFormControl.ToolbarFormControlElement.CaptionTextElement.ForeColor = Color.White;

WinForms RadToolbarForm Change CaptionFill