Hi,
When docking 2 windows together (using the xamDockManager), the window tabs appear on the bottom of the actual windows.
I was wondering if it could be possible to specify another location for them? (left, top, right)
Thanks,
Cristian
PlantCML
The TabGroupPane is a derived TabControl and so it does have a TabStripPlacement property that you can use to control the position of the tab items. The only issue is that the TabGroupPanes can be created dynamically as the user drags panes around so you would probably need to put a Style that targets the TabGroupPane into the Resources of the xamDockManager. Note, this local style will take precedence over any Style for that element provided by the Theme property. e.g.
Thank you Andrew