#903 – Placing Tabs on Different Sides of a TabControl

By default, the tabs on a TabControl will appear along the top edge of the control.

903-001

You can change which side of the TabControl that the tab strip appears on by using the TabStripPlacement property.  This property can have one of the following values: Top (default), Left, Bottom, or Right.

    <TabControl Margin="10" TabStripPlacement="Left">

903-002

    <TabControl Margin="10" TabStripPlacement="Bottom">

903-003

    <TabControl Margin="10" TabStripPlacement="Right">

903-004