Indent tab in TabControl

1.2k Views Asked by At

I'd better illustrate what I want to achieve.

Original:                         Desired:

original tab                 desired tab position

Any ideas how to draw tabs in this way? Thanks.

2

There are 2 best solutions below

2
On BEST ANSWER

Ok I found this post in stack overflow ,I think it is what you want Draw controls in tab control tab header area in Winforms

1
On

You should set a margin for your first tab. Like this:

<TabControl>
  <TabItem Header="Tab" Margin="5,0,0,0" />
</TabControl>