Please is there a proper way of docking two 'normal' dockpanel to each other? (so then, they move together by grabbing any of the dockpanel's caption). Thank You.
You should make one of the panels floating using ManualFloat standard VCL method. Actually, after this, panel's parent form with the site on it will bve created automatically.
So, then, you can acces this implicitly created site via Panel1.Site property, and so, you will be able to dock another one panel into it, using Panel.1Site.DockControl(Panel2, ...) method.
Comments