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
648
UltraDockManager Hide Event
posted

When the user clicks the close button on a panel, or clicks "Hide" on the panel's menu, the panel disappears and there is no way for the user to get it back. Is there an event I can handle or a property I can check that will tell me if this has happened? I tried the PanelHidden event, but that event also fires when the panel autohides. I need a way to determine if the panel is permanently hidden to the user.

John

Parents
  • 95
    posted

    Hi

    I've the same problem. I used following:

     

     

     

     

     

     

     

     

    private void ultraDockManager1_PaneHidden(object sender, PaneHiddenEventArgs e)
            {
                if(e.Pane.Closed)
                {
                    // user closed the pane
                }
                else
                {
                    // auto hide
                }

            }

    But I'm also interessted if there a way for the user to set the pane visible after hiding.

Reply Children
No Data