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