I can't for the life of me figure out how to hide a nested ToolWindowContainer via XAML. Here's a code sample with three ToolWindows, twOne, twTwo, and twThree, where I have twTwo and twThree in their own container nested within the container for twOne. I want twTwo and TwThree hidden (e.g. collapsed to the left side of the screen) upon application start up.
<docking:DockSite x:Name="dockSite" >
<docking:DockSite.AutoHideBottomContainers>
<docking:ToolWindowContainer >
<docking:ToolWindow Title="Bottom ToolWindow" />
</docking:ToolWindowContainer>
</docking:DockSite.AutoHideBottomContainers>
<docking:SplitContainer Orientation="Horizontal">
<docking:SplitContainer Orientation="Vertical">
<docking:ToolWindowContainer>
<docking:ToolWindow Title="twOne"/>
</docking:ToolWindowContainer>
<docking:ToolWindowContainer>
<docking:ToolWindow Title="twTwo"/>
<docking:ToolWindow Title="twThree" />
</docking:ToolWindowContainer>
</docking:SplitContainer>
<docking:Workspace>
.
.
.
Any thoughts?
Thanks... Rick
[Modified 9 years ago]