This question is locked. New answers and comments are not allowed.
Hi,
I have used RadDocking inside the RadTile and it works as advertised. However, when I embedded it inside RadPanelBaritem my entire application went blank. I have also tried using it inside the Accordion control with the same result. At design-time, the control behaves normally. What am I doing wrong?
I have used RadDocking inside the RadTile and it works as advertised. However, when I embedded it inside RadPanelBaritem my entire application went blank. I have also tried using it inside the Accordion control with the same result. At design-time, the control behaves normally. What am I doing wrong?
<UserControl x:Class="VectorScaling.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignHeight="600" d:DesignWidth="800" > <Grid Background="White"> <telerik:RadPanelBar telerik:StyleManager.Theme="Windows7" ExpandMode="Multiple" Name="radPanelBar1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <telerik:RadPanelBarItem Header="Responsibility" IsExpanded="True"> <telerik:RadDocking> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup> <telerik:RadPane Header="test"> <TextBlock Text="test"></TextBlock> </telerik:RadPane> <telerik:RadPane> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> </telerik:RadDocking> </telerik:RadPanelBarItem> </telerik:RadPanelBar> </Grid> </UserControl>