<telerik:RadDocking x:Name="mainDockingManager" Grid.Row="1" Grid.Column="0">
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer><telerik:RadPaneGroup>
<telerik:RadDocumentPane>Stuff here</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost><br></telerik:RadDocking>InitializeComponent();
kernel = new StandardKernel(new AppModule());
this.mainDockingManager.Items.Add(kernel.Get<ILegend>());<UserControl x:Class="Whiteboard.Plugin.UI.UnclassLegend"<br> xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"<br> xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" <br> xmlns:d="http://schemas.microsoft.com/expression/blend/2008"<br> xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"<br> mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300"><br> <telerik:RadSplitContainer telerik:DockingPanel.InitialSize="170,500" InitialPosition="DockedLeft"><Style x:Key="{x:Type ToolTip}" TargetType="ToolTip"> <Setter Property="OverridesDefaultStyle" Value="true"/> <Setter Property="HasDropShadow" Value="True"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="ToolTip"> <Border CornerRadius="7" HorizontalAlignment="Center" VerticalAlignment="Top" Padding="5" BorderThickness="3,3,3,3"> <Border.Background> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#CF181818" Offset="0"/> <GradientStop Color="#BE1C1C1C" Offset="1"/> </LinearGradientBrush> </Border.Background> <Border.BorderBrush> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="#80FFFFFF" Offset="0"/> <GradientStop Color="#7FFFFFFF" Offset="1"/> <GradientStop Color="#FFFFF18D" Offset="0.344"/> <GradientStop Color="#FFFFF4AB" Offset="0.647"/> </LinearGradientBrush> </Border.BorderBrush> <StackPanel> <TextBlock FontFamily="Tahoma" FontSize="11" Text="{Binding Name}" Foreground="#FFFFFFFF" /> </StackPanel> </Border> </ControlTemplate> </Setter.Value> </Setter> </Style><Window x:Class="WpfApplication1.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="350" Width="525"> <Grid> <telerik:RadTreeListView> <telerik:RadContextMenu.ContextMenu> <telerik:RadContextMenu x:Name="treeContextMenu" Background="LimeGreen"> <telerik:RadMenuItem Header="Test 1" Background="White"/> <telerik:RadMenuItem Header="Test 2" Background="White"/> <telerik:RadMenuItem IsSeparator="True" Background="White"/> <telerik:RadMenuItem Header="Test 3" Background="White"/> <telerik:RadMenuItem Header="Test 4" Background="White"/> <telerik:RadMenuItem Header="Test 5" Background="White"/> </telerik:RadContextMenu> </telerik:RadContextMenu.ContextMenu> </telerik:RadTreeListView> </Grid></Window>Hello
I am using the RadDocking control to manage our application main layout. I wanted to implement a Save/Load functionality in order to provide a better user experience. To do that I added a SaveLayout and LoadLayout menu Items that uses the RadDocking.SaveLayout and RadDocking.LoadLayout methods (http://www.telerik.com/help/wpf/raddocking-features-save-load-layout.html) . The layout structure is saved and loaded properly, but I noticed that the ‘IsPinned’ property of the panes is not being properly restored. It looks like that property is not being included in the saved layout structure and therefore not being restored.
As an example:
1- Start the application. All Panes are pinned.
2- The user saves the layout.
3- The user unpin a pane
4- The user loads the layout.
5- … the pin remains unpinned….
Is this an expected behaviour? If not, How can I accomplish what I am looking for (5- The pane is restored as pinned)?
Thanks,

<StackPanel> <telerik:RadMaskedNumericInput Name="radMaskedNumericInput1"> <telerik:RadMaskedNumericInput.Style> <Style TargetType="telerik:RadMaskedNumericInput"> <Setter Property="KeyboardNavigation.TabNavigation" Value="Local"/> <Setter Property="Mask" Value="#3.4"></Setter> </Style> </telerik:RadMaskedNumericInput.Style> </telerik:RadMaskedNumericInput> <telerik:RadMaskedNumericInput Name="radMaskedNumericInput2" KeyboardNavigation.TabNavigation="Local" Mask="#6.3"/></StackPanel>