views:

193

answers:

1

I wanna set a TabControl that its header are in the left side instead of on top, how do I do that?

+3  A: 
<TabControl TabStripPlacement="Left" >
</TabControl>
IanR