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
20
Show a closed ContentPane
posted

I have a TabGroupPane with multiple ContentPanes. Each pane is hidden if a user closes the tab. Now I have to unhide (show) a closed tab, but don't know how. I have searched the docu but haven't found anything about that.

I hope you can help me with this problem.

  • 130
    Offline posted

    I used the xamMenu with a menuItem for "show contentpane".  In the code behind, in the xamMenu ItemClicked event:

     

    Dim

     

     

    myHiddenPane As Infragistics.Windows.DockManager.ContentPane = CType(XamDockManager1.FindName("MyHiddenPane"), Infragistics.Windows.DockManager.ContentPane)

    myHiddenPane .Visibility = Windows.

     

    Visibility.Visible