I have a RadDocking with two RadSplitContainers in it. In the first Container I have one Pane and in the second Container I have a DocumentHost with n Panes. How do I prevent the Panes from the DocumentHost from docking in the first RadSplitContainer (or force them to only dock in their "own" SplitContainer)?
My structure looks like this:
My structure looks like this:
<telerik:RadDocking> <!-- Panel --> <telerik:RadSplitContainer MinWidth="265" MaxWidth="600" Width="350" Name="LeftContainer" InitialPosition="DockedLeft" Margin="0,-4,0,0"> <telerik:RadPaneGroup BorderThickness="1"> <telerik:RadPane Header="Title"> Content </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> <!-- Tabs --> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer Margin="0,-3,0,0" BorderThickness="1"> <telerik:RadPaneGroup> <telerik:RadPane Header="asdf"> aasdf asdf </telerik:RadPane> <telerik:RadPane Header="asdf"> aasdf asdf </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost></telerik:RadDocking>