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 UltraExplorerBar
posted

I am creating a windows form with an UltraExplorerBar docked along the left as an OutLookNavigationPane. I would like the rest of the form to contain dockable controls using the UltraDockManager. However, I don't want the docking, position, or size of the explorer bar to change. I only want the user to be able to change the docking on the controls in the right part of the form. The idea is to have the explorer bar remain fixed, and let the user customize the layout of the controls in the rest of the form.

Is there a way to do this?

John

Parents
  • 44743
    Suggested Answer
    posted

    The best way to do this would be to create a custom UserControl. Add the UltraDockManager to the UserControl instead of the Form. On the Form, add your UltraExplorerBar docked Left and an instance of the custom UserControl docked Fill. Now the dock panes can only exist within the UserControl and they will only dock to the edges of that instead of the edges of the Form, meaning they can never go on the left side of the UltraExplorerBar.

Reply Children