Hello,
I have a docksite with document windows inside:
<docking:DockSite x:Name="styleDocumentDockSite"
AreNewTabsInsertedBeforeExistingTabs="False" DocumentItemContainerStyle="{StaticResource DockingWindowStyle}"
DocumentItemsSource="{Binding Tabs, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" >
<docking:Workspace>
<docking:TabbedMdiHost TabStripPlacement="Left"/>
</docking:Workspace>
</docking:DockSite>
With such TabStripPlacement set to Left, how can I achieve (like in Visual Studio):
- the tab header to have an initial width?
- to have some splitter, so user can resize the tab header to left/right?
Of course, these should not affect when the TabStripPlacement is changed to other value.
Thanks for any help.