This question is locked. New answers and comments are not allowed.
I have some XAML that looks like this:
This creates a group, docked to the left, with overlapping RadPanes, like this:
Overlapping RadPanes
What I want however is to have the RadPanes "stacked", like this:
Stacked RadPanes
How do write the XAML so that the RadPanes are stacked initially?
<telerik:RadSplitContainer InitialPosition="DockedLeft"> <telerik:RadPaneGroup> <telerik:RadPane Header="Environment Explorer" IsSelected="True" HeaderTemplate="{StaticResource EnvironmentExplorerTemplate}"> <telerik:RadTreeView x:Name="treeEnvironments" ItemTemplate="{StaticResource RISEnvironment}" /> </telerik:RadPane> <telerik:RadPane Header="Properties" HeaderTemplate="{StaticResource PropertyTemplate}"> <my:PropertyGrid /> </telerik:RadPane> </telerik:RadPaneGroup></telerik:RadSplitContainer>This creates a group, docked to the left, with overlapping RadPanes, like this:
Overlapping RadPanes
What I want however is to have the RadPanes "stacked", like this:
Stacked RadPanes
How do write the XAML so that the RadPanes are stacked initially?