#903 – Placing Tabs on Different Sides of a TabControl
September 10, 2013 1 Comment
By default, the tabs on a TabControl will appear along the top edge of the control.
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">
<TabControl Margin="10" TabStripPlacement="Bottom">
<TabControl Margin="10" TabStripPlacement="Right">
Pingback: Dew Drop – September 10, 2013 (#1,621) | Morning Dew