I have a requirement as below in which i have a XamDockManager-->Panes-->SplitPane-->here i have a TabGroupPane and 3 ContentPanes as shown in Code below,I want to have relative Sizeslike first TabGroupPane should occupy 10% of the screen ,Region2(ContentPAne) must occupy aboutnext 50% of the screen etc .how can i acheive this....presently i am getting same height forall the 4 panes<DockPanel> <ig:XamDockManager> <ig:XamDockManager.Panes> <ig:SplitPane x:Name="splitPane" SplitterOrientation="Horizontal"> <ig:TabGroupPane x:Name="Region1"/> <ig:ContentPane x:Name="Region2"> <ItemsControl x:Name="InsideRegion2"/> </ig:ContentPane> <ig:ContentPane x:Name="Region3"> <ItemsControl x:Name="InsideRegion3"/> </ig:ContentPane> <ig:ContentPane x:Name="Region4"> <ItemsControl x:Name="InsideRegion4"/> </ig:ContentPane> </ig:SplitPane> </ig:XamDockManager.Panes> </ig:XamDockManager></DockPanel>
Thanks in Advance
Hello,
The width of these panes has to depend on the ActualWidth of the XamDockManager or your window. On Load, you can check the ActualWidth property of the XamDockManager or Window and set th widths of your panes accordingly. You could also Load a saved layout with the LoadLayout method.
I want to have the Screen Splitted with 3 Splitpanes(with red,blue and BlanchedAlmond Colours)with almost same sizes as shown in following image,I have resized the and taken the screenshot,how can i have this look at load time...
Thanks