When the view is initially loaded, the RadPanes start out open, and then immediately shut. This is visible and distracting. I really want them to just be closed from the get go.How can I make it so the RadPanes in a RadPaneGroup are initially closed (unpinned)?
How can I make it so the RadPanes in a RadPaneGroup are initially closed (unpinned)?
Code snipet:
| <radDock:RadDocking x:Name="radDocking1" Background="{StaticResource WindowBackgroundBrush}"> |
| <radDock:RadDocking.DocumentHost> |
| <!-- controls here --> |
| </radDock:RadDocking.DocumentHost> |
| <radDock:RadSplitContainer radDock:DockingPanel.InitialSize="300,300" MaxWidth="600" |
| Name="RightContainer" InitialPosition="DockedRight"> |
| <radDock:RadPaneGroup x:Name="_librariesGroup"> |
| <radDock:RadPane x:Name="_requirementsLibraryPane" Header="Requirements Library" |
| CanFloat="False" CanUserClose="False" CanUserPin="True" IsPinned="False"> |
| <my1:RequirementsLibraryDrawerControl x:Name="_requirementsLibraryDrawer" /> |
| </radDock:RadPane> |
| </radDock:RadPaneGroup> |
| </radDock:RadSplitContainer> |
| </radDock:RadDocking> |
