This question is locked. New answers and comments are not allowed.
Please take a look at the following RadDocking control... it contains a main document host area and three simple panes, initially docked at the bottom.
1) Run the sample and unpin each of the bottom panes.
2) Hover the tab for the 3rd pane 'CCC' and notice that it opens revealing a RadDropDownButton control...
3) Click the RadDropDownButton to open it's radmenu. As soon as you hover the popup containing the radmenuitems, the RadDocking panel will start to slide closed...
1) Run the sample and unpin each of the bottom panes.
2) Hover the tab for the 3rd pane 'CCC' and notice that it opens revealing a RadDropDownButton control...
3) Click the RadDropDownButton to open it's radmenu. As soon as you hover the popup containing the radmenuitems, the RadDocking panel will start to slide closed...
<telerik:RadDocking> <telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer> <telerik:RadPaneGroup > <telerik:RadPane CanUserClose="False"> <Border Background="Pink" BorderBrush="Red" BorderThickness="3" /> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking.DocumentHost> <telerik:RadSplitContainer InitialPosition="DockedBottom" telerik:DockingPanel.InitialSize="1,260"> <telerik:RadPaneGroup x:Name="paneGroup" TabStripPlacement="Bottom" TabOrientation="Horizontal"> <telerik:RadPane x:Name="paneA" Title="AAA" Header="AAA" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="LightBlue" BorderBrush="Blue" BorderThickness="3" /> </telerik:RadPane> <telerik:RadPane x:Name="paneB" Title="BBB" Header="BBB" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="YellowGreen" BorderBrush="Green" BorderThickness="3" /> </telerik:RadPane> <telerik:RadPane x:Name="paneC" Title="CCC" Header="CCC" CanUserPin="True" CanUserClose="False" CanFloat="False" CanDockInDocumentHost="False" ContextMenuTemplate="{x:Null}"> <Border Background="PaleGoldenrod" BorderBrush="Gold" BorderThickness="3"> <telerik:RadDropDownButton Content="Options" Height="50" Width="100"> <telerik:RadDropDownButton.DropDownContent> <telerik:RadContextMenu StaysOpen="True"> <telerik:RadMenuItem Header="1" IsCheckable="True" /> <telerik:RadMenuItem Header="2" IsCheckable="True" /> <telerik:RadMenuItem IsSeparator="True"/> <telerik:RadMenuItem Header="3" IsCheckable="True" /> <telerik:RadMenuItem Header="4" IsCheckable="True" /> </telerik:RadContextMenu> </telerik:RadDropDownButton.DropDownContent> </telerik:RadDropDownButton> </Border> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking>