Apparently I came across the following situation.
When having a RadPane as a TabbedDocument and Header set to Collapsed then if I dock another RadPane onto it as another TabbedDocument what happens after I remove the second RadPane, the first on shows a blank content, i.e. the original content of the first pane disappears.
Look at the following Code example:
<telerik:RadDocking Grid.Row="1" IsRestricted="True" > <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer Focusable="False" IsTabStop="False" > <telerik:RadPaneGroup Focusable="False" > <telerik:RadPane Focusable="False" IsTabStop="False" Visibility="Collapsed" PaneHeaderVisibility="Collapsed" CanUserClose="False" IsDockable="False"> .... RadPane Contents Here .... </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer Focusable="False" IsTabStop="False" telerik:RadDocking.FloatingLocation="300,300" telerik:RadDocking.FloatingSize="600,350" InitialPosition="FloatingDockable" > <telerik:RadPaneGroup x:Name="radPaneGroup" Focusable="False"> <telerik:RadPane Header="Test" Focusable="False" LayoutUpdated="RadPane_LayoutUpdated" x:Name="radPane" IsTabStop="False" IsActive="True"> <TextBlock FontSize="48">Testing...</TextBlock> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer></telerik:RadDocking>