This question is locked. New answers and comments are not allowed.
Hello,
I am getting started with the RadDocking control and noticed a behavior that I would like to have but I'm not sure is possible...
I am wondering if there is a way to pin/unpin an entire "RadPaneGroup" or "RadSplitContainer" instead of just the "RadPane" like in Visual Studio... I am hoping there is just an option that I am missing but have included a few screenshots of the behavior I am looking for and what currently happens.
I have also included my xaml code here in case I am simply structuring the xaml poorly...
Thanks,
Rob
I am getting started with the RadDocking control and noticed a behavior that I would like to have but I'm not sure is possible...
I am wondering if there is a way to pin/unpin an entire "RadPaneGroup" or "RadSplitContainer" instead of just the "RadPane" like in Visual Studio... I am hoping there is just an option that I am missing but have included a few screenshots of the behavior I am looking for and what currently happens.
I have also included my xaml code here in case I am simply structuring the xaml poorly...
<telerik:RadDocking> <telerik:RadDocking.DocumentHost> <telerik:RadPaneGroup MinHeight="100"> <telerik:RadPane Header="Main" CanUserClose="False"> <Border Background="#FFD5BCF5" BorderBrush="#FF330080" BorderThickness="2"> <TextBlock Text="Main" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20" /> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer InitialPosition="DockedRight"> <telerik:RadPaneGroup> <telerik:RadPane x:Name="subpanel1" Header="SubPanel(1)" CanUserClose="False" CanUserPin="True"> <Border Background="YellowGreen" BorderBrush="Green" BorderThickness="2"> <TextBlock Text="SubPanel(1)" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20" /> </Border> </telerik:RadPane> <telerik:RadPane x:Name="subpanel2" Header="SubPanel(2)" CanUserClose="False" CanUserPin="True"> <Border Background="#FFF9F4BB" BorderBrush="#FFFFAF00" BorderThickness="2"> <TextBlock Text="SubPanel(2)" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20" /> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer></telerik:RadDocking>Thanks,
Rob