Skip to main content
Bar

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BarOptions.DisableCustomization Property

Gets or sets whether the bar can be customized using drag-and-drop operations.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool DisableCustomization { get; set; }

#Property Value

Type Default Description
Boolean false

true if customization of bar links is disabled; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to DisableCustomization
Bar
.OptionsBar .DisableCustomization

#Remarks

If the DisableCustomization property is set to false, the end-user can perform drag-and-drop operations on links to add them to or delete them from the bar. Links can be dragged while holding the ALT key. Combining the ALT and CTRL key allows you to copy links while dragging. Links can also be dragged when the Customization Window is visible.

To disable customization using drag-and-drop, set the DisableCustomization property to true.

The Customization Window is available if the BarManager.AllowCustomization property is set to true.

See Also