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

TreeListNode.ChildrenCheckBoxStyle Property

Gets or sets whether all child nodes owned by this node should display check boxes, radio buttons, or neither.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v24.2.dll

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

#Declaration

[DefaultValue(NodeCheckBoxStyle.Default)]
[DXCategory("Behavior")]
public virtual NodeCheckBoxStyle ChildrenCheckBoxStyle { get; set; }

#Property Value

Type Default Description
DevExpress.XtraTreeList.NodeCheckBoxStyle Default

A DevExpress.XtraTreeList.NodeCheckBoxStyle enumeration value that specifies what child nodes should display. The Default value means child nodes follow the global TreeListOptionsView.CheckBoxStyle setting.

#Remarks

Use the TreeListOptionsView.RootCheckBoxStyle property to specify a similar behavior for root-level nodes.

TreeList-CheckBoxStyle.png

See Node Checking - Checkboxes and Radio Buttons to learn more.

Demo: Select With Radio Buttons and Check Boxes module in the XtraTreeList MainDemo

See Also