This question is locked. New answers and comments are not allowed.
Hello
I want to use RadDocking inside a RadWindow.
I use this code :
<telerik:RadWindow x:Class="Silverlight.Test.FrmWindow1" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Header="Window1"> <telerik:RadDocking> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup Padding="0"> <telerik:RadPane Visibility="Collapsed" CanUserClose="False"> <Border Background="Red" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <telerik:Label Content="DocumentHost" HorizontalAlignment="Center" VerticalAlignment="Center"/> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer InitialPosition="DockedLeft" Orientation="Vertical"> <telerik:RadPaneGroup> <telerik:RadPane Header="Toolbox"/> </telerik:RadPaneGroup> <telerik:RadPaneGroup> <telerik:RadPane Header="Server Explorer"/> </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer InitialPosition="DockedTop" Height="80"> <telerik:RadPaneGroup > <telerik:RadDocumentPane Header="Navigation" > <Border Background="Aqua" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" > <telerik:Label Content="DocumentHost" /> </Border> </telerik:RadDocumentPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking></telerik:RadWindow>
Everything work except Pin/Unpin RadPane. Icon is visible but click has not effect.
Is a limitation or I miss something ? (this code work in a UserControl)
Thank in advance for your help.
Arnaud.