I want to have my company's name on the TabControl just before the first tab-item.
I have tried to add a TextBlock directly in TabControl. But it appears as if a new TabItem without any header is added just before the first TabItem and inside that newly created TabItem I get my company's name.
Here is the code:
<TabControl>
<TextBlock Text="MyCompanyName" />
<TabItem Header="FirstTabITem" />
<TabItem Header="SecondTabITem" />
</TabControl>
Is this the limitation of WPF?