How to force a bar to be docked at one of the desired edges of the form in CommandBar?
Dock settings
Using the DockState property of the commandBar, you can set the initial dock position of the bar. However, in the run time, user can change the dock position. To overcome this, you can set the AllowedDockBorders property of CommandBar, which allows you to force the bar to be docked only to the specified edge.
The following code will allow a bar to be docked to Top only.
C#
CommandBar cmd = this.mainFrameBarManager1.GetBarControl(this.bar1);
//Set the initial dock position to the top of the form.
cmd.DockState=CommandBarDockState.Top;
//After floating, the bar can be docked only to the bottom of the form.
cmd.AllowedDockBorders=CommandBarDockBorder.Top;VB
Dim cmd As CommandBar = Me.mainFrameBarManager1.GetBarControl(Me.bar1)
'Set the initial dock position to the top of the form.
cmd.DockState = CommandBarDockState.Top
'After floating, the bar can be docked only to the bottom of the form.
cmd.AllowedDockBorders=CommandBarDockBorder.TopReference link: https://help.syncfusion.com/windowsforms/commandbar/interactive-features#docking-command-bar