I've created the above, but the problem is that the bottom 3 panes are always sized to a minimal height, which means the user must resize each time. I've tried saving/loading the layout and this makes no difference. I've also tried giving them heights/minheights with no sucess.
Any ideas?
Thanks
It's hard to say without seeing how you define the layout. Can you post the xaml that you use to define the layout?
<DockManager:XamDockManager Theme="Royale" Name="DockManager"> <DockManager:XamDockManager.Resources> </DockManager:XamDockManager.Resources> <DockManager:XamDockManager.Panes> <DockManager:SplitPane SplitterOrientation="Vertical" DockManager:XamDockManager.InitialLocation="DockedBottom"> <DockManager:ContentPane x:Name="a" Header="a" CloseButtonVisibility="Collapsed" IsPinned="True" AllowClose="False"> </DockManager:ContentPane> <DockManager:ContentPane x:Name="b" Header="b" CloseButtonVisibility="Collapsed" IsPinned="True" AllowClose="False"> <StackPanel Orientation="Vertical" Margin="0,5,0,0" > <Chart:XamChart Name="Chart" View3D="True" Width="450" Height="400" Margin="0,-125,0,0" > </Chart:XamChart> </StackPanel> </DockManager:ContentPane> <DockManager:ContentPane x:Name="c" Header="c" CloseButtonVisibility="Collapsed" IsPinned="True" AllowClose="False"> </DockManager:ContentPane> </DockManager:SplitPane> </DockManager:XamDockManager.Panes> <DockManager:DocumentContentHost> <DockManager:SplitPane SplitterOrientation="Horizontal"> <DockManager:SplitPane SplitterOrientation="Horizontal"> <DockManager:TabGroupPane> <DockManager:ContentPane x:Name="top" Header="top" CloseButtonVisibility="Collapsed" AllowClose="False" Visibility="Visible"> <Views:PositionsView /> </DockManager:ContentPane> </DockManager:TabGroupPane> </DockManager:SplitPane> </DockManager:SplitPane> </DockManager:DocumentContentHost> </DockManager:XamDockManager>
thanks