Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1255
Programatically toggle a pane between a tabbed document and a floating window
posted

You can right click on a tab in the XamDockManager and toggle between a tabbed document and a floating window. How can I do this in C# so I can execute this behavior from a button click.

  • 69686
    posted

    These actions are associated with content pane commands so you can use them, for example :

     

                ContentPane cp = new ContentPane();

                cp.ExecuteCommand(ContentPaneCommands.ChangeToDocument);