New to Telerik UI for WinForms? Start a free 30-day trial
Design Time
Updated over 1 year ago
You can access and modify the style for the different elements in the editable area of RadTabbedForm by using the Element hierarchy editor.

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
C#
this.TabbedFormControl.Tabs[0].Item.BackColor = Color.Red;