If you want to style the tabs in the header of the RadTabbedWindow
, you should define a custom RadTabItem
style that you set the ItemContainerStyle
property of the RadTabbedWindow
to, e.g.:
<telerik:RadTabbedWindow ...>
<telerik:RadTabbedWindow.ItemContainerStyle>
<Style TargetType="telerik:RadTabItem" BasedOn="{StaticResource RadTabbedWindowTabItemStyle}">
<Setter Property="MinHeight" Value="40" />
<Setter Property="Background" Value="Red" />
<Setter Property="FontWeight" Value="Bold" />
<Setter Property="PinButtonVisibility" Value="Visible" />
<Setter Property="CloseButtonVisibility" Value="Visible"/>
</Style>
</telerik:RadTabbedWindow.ItemContainerStyle>
...
</telerik:RadTabbedWindow>
If you want need to edit the ControlTemplate
, which you most probably do to get rounded corners, you should be able to right-click on the control in design mode in Visual Studio or in Blend and choose Edit Additional Templates->Edit Generated Item Container (ItemContainerStyle) to copy the default template into your XAML markup. You could then edit it as per your requirements by for example setting the CornerRadius
property of the Border
element.