This question is locked. New answers and comments are not allowed.
So I have a dock with just 2 panes docked to the left, both of them is hidden initially. When I hoover my mouse over the tab, the pane expands, then when I hoover away from the tab it hides. However if I click on the tab, then the pane will remain open and the only way I can put it back to the hidden position is to pin then unpin it.
Code is here:
Thanks
Code is here:
<telerik:RadDocking Grid.Row="1" Grid.Column="0" HasDocumentHost="False" HorizontalAlignment="Stretch" Margin="0,0,0,0" Name="radDocking1" VerticalAlignment="Stretch" PaneStateChange="radDocking1_PaneStateChange"> <telerik:RadSplitContainer InitialPosition="DockedLeft" Name="sctLeft" > <telerik:RadPaneGroup Name="radPaneGroup1" MaxWidth="200" Width="200" > <telerik:RadPane Header="Pane 1" Name="pane1" IsPinned="False" CanFloat="False" CanUserClose="False" CanDockInDocumentHost="False" > <!-- some controls --> </telerik:RadPane> <telerik:RadPane Header="Pane 2" Name="pane2" IsPinned="False" CanFloat="False" CanUserClose="False" CanDockInDocumentHost="False" > <!-- some control --> </telerik:RadPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer></telerik:RadDocking>Thanks