HI,
i use a RadDocking- Control and add Panes by code:
This works fine. Now add one (AAA) Pane and save this layout to a xml-file. A second pane will be created (BBB). Now i delete
the second pane (BBB) and save the layout again. How do i delete this second pane from the LayoutStream? In my void "Docking_Element"-Method this second pane is still shown!
Thanks
Best Regards
Rene
i use a RadDocking- Control and add Panes by code:
RadPane radPane = new RadPane() { Title = panename_s, Name = name_s };RadDocking.SetSerializationTag(radPane, panename_s);RadPaneGroup radPaneGroup = new RadPaneGroup();RadSplitContainer radSplitContainer = new RadSplitContainer() { InitialPosition = DockState.FloatingDockable };Controls.LayoutData MyControl = new Controls.LayoutData();MyControl.Name = name_s;radPane.Content = MyControl;radPaneGroup.Items.Add(radPane);radSplitContainer.Items.Add(radPaneGroup);Docking.Items.Add(radSplitContainer);This works fine. Now add one (AAA) Pane and save this layout to a xml-file. A second pane will be created (BBB). Now i delete
the second pane (BBB) and save the layout again. How do i delete this second pane from the LayoutStream? In my void "Docking_Element"-Method this second pane is still shown!
Thanks
Best Regards
Rene