This question is locked. New answers and comments are not allowed.
Hi,
I have the following:
I have the following:
<telerikDocking:RadSplitContainer InitialPosition="DockedLeft" MinWidth="330"> <telerikDocking:RadPaneGroup x:Name="myRadPaneGroup"> <telerikDocking:RadPane CanUserClose="False" > <!-- Some Content Here --> </telerikDocking:RadPane> <telerikDocking:RadPane x:Name="PANE2" Header="Header" TitleTemplate="{StaticResource TitleTemplate}" CanUserClose="False" IsPinned="False" AutoHideWidth="800" > <!-- Some other content here --> </telerikDocking:RadPane> </telerikDocking:RadPaneGroup> </telerikDocking:RadSplitContainer>
As you can see, PANE2 is collapsed into the auto-hide area in the beginning.
I want to un-collapse it programatically like this:
When user presses some button on a toolbar un-collapse it just like when the user would be clicking the auto-hide area button.
How can I do this? I tried ShowAllPanes on the containing RadPaneGroup but that doesn't work.
Also I do not want to pin the pane I'm showing.
I just want it to unslide, and when user changes focus to some other element, to be hidden.