How to build tab sets whitch headers display at bottom in WPF?

The following example creates a tab control that positions the tabs on the left side.

 <TabControl TabStripPlacement="Bottom" Margin="0, 0, 0, 10"> 
  <TabItem Name="fontweight" Header="FontWeight"> 
    <TabItem.Content> 
      <TextBlock TextWrapping="WrapWithOverflow"> 
        FontWeight property information goes here. 
      </TextBlock> 
    </TabItem.Content> 
  </TabItem> 
 
  <TabItem Name="fontsize" Header="FontSize"> 
    <TabItem.Content> 
      <TextBlock TextWrapping="WrapWithOverflow"> 
        FontSize property information goes here. 
      </TextBlock> 
    </TabItem.Content> 
  </TabItem> 
</TabControl> 

 

posted @ 2012-10-09 08:53  sunnyboy  阅读(195)  评论(0编辑  收藏  举报