New to Telerik UI for WinFormsStart 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.

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

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

See Also