This question is locked. New answers and comments are not allowed.
Hello,
create a new Silverlight application, add references to Telerik.Windows.Control, Telerik.Windows.Controls.Docking and Telerik.Windows.Controls.Navigation.
Now, replace MainPage.xaml with:
Run the application: when the First pane is set floating, the title of the window is displayed correctly. When the Second pane is set floating, the title of the window just contains the name of the class!
Patrick
create a new Silverlight application, add references to Telerik.Windows.Control, Telerik.Windows.Controls.Docking and Telerik.Windows.Controls.Navigation.
Now, replace MainPage.xaml with:
<
UserControl
x:Class
=
"Docking_Header_In_Floating_Pane.MainPage"
mc:Ignorable
=
"d"
d:DesignHeight
=
"300"
d:DesignWidth
=
"400"
>
<
tk:RadDocking
>
<
tk:RadDocking.DocumentHost
>
<
tk:RadSplitContainer
>
<
tk:RadPaneGroup
>
<
tk:RadPane
Header
=
"First"
/>
<
tk:RadPane
>
<
tk:RadPane.Header
>
<
StackPanel
>
<
TextBlock
Text
=
"Second"
/>
</
StackPanel
>
</
tk:RadPane.Header
>
</
tk:RadPane
>
</
tk:RadPaneGroup
>
</
tk:RadSplitContainer
>
</
tk:RadDocking.DocumentHost
>
</
tk:RadDocking
>
</
UserControl
>
Run the application: when the First pane is set floating, the title of the window is displayed correctly. When the Second pane is set floating, the title of the window just contains the name of the class!
Patrick