This question is locked. New answers and comments are not allowed.
Hello,
I have discovered a problem with the RadDock control using the xaml below. It's a simple layout with a single bottom panel and two side panels.
1 - Unpin all the panes.
2 - Hover any of the tabs to open the collapsed pane and notice that you are not able to pin them (the pin button is disabled!)...
I have noticed that if you click on the tabs to open a panel instead of just hovering, and then hover one of the other tabs, the pin button suddenly becomes enabled.... also weird...
<telerik:RadDocking> <telerik:RadSplitContainer x:Name="RightContainer" InitialPosition="DockedRight"> <telerik:RadPaneGroup x:Name="grpRight" TabOrientation="Horizontal" TabStripPlacement="Bottom"> <telerik:RadPane x:Name="paneRight1" Title="Right1" Header="Right1" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="YellowGreen" BorderBrush="Green" BorderThickness="2"> <TextBlock Text="right1" Foreground="Green" FontSize="14" /> </Border> </telerik:RadPane> <telerik:RadPane x:Name="paneRight2" Title="Right2" Header="Right2" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="PaleGoldenrod" BorderBrush="Gold" BorderThickness="2"> <TextBlock Text="right2" Foreground="Gold" FontSize="14" /> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> <telerik:RadSplitContainer x:Name="BottomContainer" InitialPosition="DockedBottom"> <telerik:RadPaneGroup x:Name="grpBottom"> <telerik:RadPane x:Name="paneBottom" Title="Bottom" Header="Bottom" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="Pink" BorderBrush="Red" BorderThickness="2"> <TextBlock Text="bottom" Foreground="Red" FontSize="14" /> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer></telerik:RadDocking>EDIT - I forgot to mention, that I'm using version "2012.1.528.1040".
