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
430
Docking a Form
posted

Hello,

I am interesting to put 3 chuld forms in one MDI parent form, and I want to be able to docke the forms but not to the MDI parent.

The left one (chuld form) will be docking to the left side of the of the MDI parent form. the muddke chile will dock to the right side of the left child form, an the right chie will be always open without the ability of docking. and when i will dock the left side form the right one will change it's width according to the empty width of the MDI parents from.

Thank you,

Yossy

Parents
No Data
Reply
  • 44743
    posted

    It sounds like you don't want to use mdi child forms or an mdi parent form. Instead, you probably want to use 3 user controls on a regular Form. You can add an UltraDockManager to the Form and dock the user controls to the appropriate sides. Then set its LayoutStyle to FillContainer. The last dock user control will fill the middle area of the main form which is not occupoed by the other panes.

Children