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

Design Time

You can access and modify the style for the different elements in the editable area of RadTabbedForm by using the Element hierarchy editor.

WinForms RadTabbedForm Design Time

Programmatically

The following example demonstrates how you can access the visual item of the tab and change its back color.

Access the tab visual element

this.TabbedFormControl.Tabs[0].Item.BackColor = Color.Red;

Me.TabbedFormControl.Tabs(0).Item.BackColor = Color.Red

See Also

In this article