This question is locked. New answers and comments are not allowed.
Using Q3 2011, a crash occurs in a very simple docking layout (only 1 pane)
Steps to reproduce:
<
telerik:RadDocking
x:Name
=
"xDock"
Grid.Row
=
"1"
HasDocumentHost
=
"true"
>
<
telerik:RadDocking.DocumentHost
>
<
telerik:RadSplitContainer
>
<
telerik:RadPaneGroup
>
<
telerik:RadPane
Header
=
"Pane 1"
x:Name
=
"xPane1"
telerik:RadDocking.SerializationTag
=
"1"
>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadSplitContainer
>
</
telerik:RadDocking.DocumentHost
>
</
telerik:RadDocking
>
Steps to reproduce:
- float the pane
- close (hide) the pane (no more panes visible)
- save the layout
- load the layout (still no panes, which is correct)
- now trying to unhide and activate the pane
if (xPane1.IsHidden)
xPane1.IsHidden = false;
xDock.ActivePane = xPane1; //CRASH HERE
How can this be fixed?
Thank you for your assistance,
Henri