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

Customizing Items Layout

RadTabControl allows you to customize the items placement and lines ordering.

To change the placement of the tabstrip area where the items are placed, set the TabStripPlacement property of RadTabControl. The placement can be Top(default), Bottom, Left or Right.

Setting TabStripPlacement

<telerik:RadTabControl TabStripPlacement="Bottom">           
    <telerik:RadTabItem Header="Home" /> 
    <telerik:RadTabItem Header="View" /> 
    <telerik:RadTabItem Header="Insert" /> 
    <telerik:RadTabItem Header="Settings" /> 
</telerik:RadTabControl> 
All tabstrip placements

WinUI RadTabControl

The tab items can be separated in two different lines (rows). To create a new line, set the IsBreak property of the RadTabItem which should start the line.

Setting IsBreak

<telerik:RadTabControl>           
    <telerik:RadTabItem Header="Home" /> 
    <telerik:RadTabItem Header="View" /> 
    <telerik:RadTabItem Header="Insert" IsBreak="True" /> 
    <telerik:RadTabItem Header="Settings" /> 
</telerik:RadTabControl> 
Tab items on multiple rows

WinUI RadTabControl

The line with the selected tab will be moved on the bottom row.

To align the tabs in the tabstrip area, set the Align property of RadTabControl. The available alignments are Left(default), Right, Center, Justify.

Setting alignments

<telerik:RadTabControl Align="Justify">           
    <telerik:RadTabItem Header="Home" /> 
    <telerik:RadTabItem Header="View" /> 
    <telerik:RadTabItem Header="Insert" /> 
    <telerik:RadTabItem Header="Settings" /> 
</telerik:RadTabControl> 
All tabstrip alignments

WinUI RadTabControl

ReorderTabRows

Using the ReorderTabRows property you can control how the tab item rows are ordered in case of multiple lines. The default behavior is to keep the selected tab item always on the lowest row and move the other rows above.

The default value for the ReorderTabRows property is true.

ReorderTabRows

    <telerik:RadTabControl x:Name="radTabControl"  ReorderTabRows="True"> 
        <telerik:RadTabItem Header="Calendar"/> 
        <telerik:RadTabItem Header="Colors" IsBreak="True"/> 
        <telerik:RadTabItem Header="Quote"/> 
    </telerik:RadTabControl> 
ReorderTabRows set to True

WinUI RadTabControl Telerik TabControl ReorderTabRows

ReorderTabRows set to False

WinUI RadTabControl Telerik TabControl ReorderTabRows

See Also

In this article
Not finding the help you need?