This question is locked. New answers and comments are not allowed.
Is there a way to create a new pane in the floating state to the Docking layout? I seem to be able to dynamically created a pane within an existing group in the docking, however it always goes to the docked state.
Example:
Is there another portion of the docking I should add the new pane to so that it is floating?
Thank you for your help.
Jeremy
Example:
| RadDocumentPane newPane = new RadDocumentPane(); |
| newPane.Title = "New Pane"; |
| newPane.Header = "New Pane"; |
| MyUserControl testUserControl = new MyUserControl(); |
| newPane.Content = testUserControl; |
| theBottomRadPaneGroup.Items.Add(newPane); |
Is there another portion of the docking I should add the new pane to so that it is floating?
Thank you for your help.
Jeremy