
If I have a ToolWindowContainer with a large number of ToolWindows in it, I end up with a bunch of tiny little tabs all scrunched together. Is there any way to change this? What I'd really like is something like what is on top of the Workspace portion (i.e., tabs that are big enough for their content with a dropdown off to the side to select ones that may have scrolled off the side) - only at the bottom. Or something like Excel, which, again, autosizes the tabs, but has navigation arrows to scroll through the tabs. Or, even the ability to replace the tabs with a combobox if there are more than some number.
I've included a sample XAMLThanks in advance!
David Mullin
IMA Technologies
I've included a sample XAML
<ribbon:RibbonWindow x:Class="SearchScreenIdea.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:shared="http://schemas.actiprosoftware.com/winfx/xaml/shared"
xmlns:ribbon="http://schemas.actiprosoftware.com/winfx/xaml/ribbon"
xmlns:docking="http://schemas.actiprosoftware.com/winfx/xaml/docking"
xmlns:navigation="http://schemas.actiprosoftware.com/winfx/xaml/navigation"
Height="900" Width="1000">
<docking:DockSite Background="Transparent" CanToolWindowsClose="False" ToolWindowsHaveOptions="False" AutoHidePopupCloseAnimationDuration="0:0:0.2">
<docking:SplitContainer>
<docking:ToolWindowContainer>
<docking:ToolWindow Title="Query Set 1" />
<docking:ToolWindow Title="Query Set 2" />
<docking:ToolWindow Title="Query Set 3" />
<docking:ToolWindow Title="Query Set 4" />
<docking:ToolWindow Title="Query Set 5" />
<docking:ToolWindow Title="Query Set 6" />
<docking:ToolWindow Title="Query Set 7" />
<docking:ToolWindow Title="Query Set 8" />
<docking:ToolWindow Title="Query Set 9" />
</docking:ToolWindowContainer>
<docking:Workspace>
</docking:Workspace>
</docking:SplitContainer>
</docking:DockSite>
</ribbon:RibbonWindow>
David Mullin
IMA Technologies