Skip to main content

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

TreeListOptionsCustomization.AllowChangeBandParent Property

Specifies whether bands can be moved between parents.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

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

#Property Value

Type Default Description
Boolean false

true if bands can be moved between parents; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to AllowChangeBandParent
TreeList
.OptionsCustomization .AllowChangeBandParent

#Remarks

A TreeList control allows you to arrange bands into a hierarchical structure. By default, bands can only be moved within their parent bands (if the band’s TreeListOptionsBand.AllowMove and TreeList’s TreeListOptionsCustomization.AllowBandMoving properties are set to true). To allow bands to change parents, enable the AllowChangeBandParent option.

Note, that you can reorder bands in code without restrictions regardless of the AllowChangeBandParent property’s value.

The AllowChangeBandParent property is not in effect when you customize bands using the Tree List Designer.

See Also