When using an UltraDockManager control, how can I enforce that a control must dock? When dragging a control, I don't want to be able to drop the control unless it docks.
Hello,
You can prevent panes from being allowed to float by setting the following property:
this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = DefaultableBoolean.False;
Please try this out and let me know if it works.