5 Answers, 1 is accepted
Could you please provide more details about the issues you are experiencing? Unfortunately I cannot clearly understand what the problem is.
All the best,Miroslav Nedyalkov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
<radDock:RadDocking x:Name="MyRadDocking"> |
<radDock:RadSplitContainer InitialPosition="DockedTop"> |
<radDock:RadPaneGroup> |
<radDock:RadPane |
Header="Pane1"> |
<radDock:RadSplitContainer |
InitialPosition="DockedTop"> |
<radDock:RadPaneGroup> |
<radDock:RadPane |
Header="SubPane1" /> |
<radDock:RadPane |
Header="SubPane2" /> |
</radDock:RadPaneGroup> |
</radDock:RadSplitContainer> |
</radDock:RadPane> |
<radDock:RadPane |
Header="Pane2" /> |
</radDock:RadPaneGroup> |
</radDock:RadSplitContainer> |
</radDock:RadDocking> |
What you are trying to do is not supported - you shouldn't put split containers in the panes. What you could do is to put split containers in the docking control or in other split containers, pane groups in split containers and panes in the groups. The content of the pane couldn't by any of the Docking control parts including the Docking control itself
Regards,Miroslav Nedyalkov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
You cannot achieve this with the Docking control. I would suggest you to use a TabControl and in one of the tabs you may put the content, meant to be placed in the pane with header Pane 2 and in the other tab - you might place a Docking control, a SplitContainer, Group and two Panes.
Kind regards,Miroslav Nedyalkov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.