Hallo,
I have a couple of DockableControlPane's with some user controls added to them. The user controls "look good" when docked on the left and the right of the form, but not the top and the bottom. How can I prevent docking of these controls into the top and bottom of the form? I've digged through the classes and haven't found anything.
Thanks in advance,
Indika
Even I am facing a similar problem. I want to prevent any window form being docked beyond my statubar and menu. Is there a way to do this?
-Thanks,
PK
pratham17 said:Even I am facing a similar problem. I want to prevent any window form being docked beyond my statubar and menu. Is there a way to do this?
The UltraStatusBar and UltraToolbarsManager toolbars and menu should automatically dock beyond the docking panes if they are all owned by the Form. However, if you are using the .Net statusbar and menus, you can dock them to the Form. Then you can add your dock manager to a UserControl instead of the Form. Add an instance of the UserControl to the Form and set its Dock to Fill and the dock panes will stay within the statusbar and menus.
Another solution seems to be to dock the UltraStatusBar control to the bottom using the UltraDockManager and hide the caption. But I'm sure there must be an easier way?