This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to position four RadPanes as shown in the attached image, but I'm having some issues. I can get the width to scale when the browser window is resized, but in order to get the height of each pane to be half the window's height, I need to set it explicitly, which I obviously don't want to do.
This is my XAML so far:
<telerik:RadDocking x:Name="radDocking" HasDocumentHost="False"> <telerik:RadSplitContainer x:Name="radSplitContainer" InitialPosition="DockedTop" telerik:DockingPanel.InitialSize="500, 500"> <telerik:RadPaneGroup> <telerik:RadPane Header="Test1" Content="..."> </telerik:RadPane> </telerik:RadPaneGroup> <telerik:RadPaneGroup> <telerik:RadPane Header="Test2" Content="..."> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer x:Name="radSplitContainer2" InitialPosition="DockedBottom" telerik:DockingPanel.InitialSize="500, 500"> <telerik:RadPaneGroup> <telerik:RadPane Header="Test3" Content="..."> </telerik:RadPane> </telerik:RadPaneGroup> <telerik:RadPaneGroup> <telerik:RadPane Header="Test4" Content="..."> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer></telerik:RadDocking>