Articles in this section
Category / Section

How to force a bar to be docked at one desired edge of the form in CommandBar?

1 min read

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.Top

Reference link: https://help.syncfusion.com/windowsforms/commandbar/interactive-features#docking-command-bar

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied