Skip to main content
All docs
V24.2

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

TreeViewControl.CheckBoxValueConverter Property

Gets or sets a converter that specifies a checkbox value. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public IValueConverter CheckBoxValueConverter { get; set; }

#Property Value

Type Description
IValueConverter

An object that implements the IValueConverter interface.

#Remarks

Set the TreeViewControl.ShowCheckboxes property to true to display check boxes.

The CheckBoxValueConverter property allows you to create a converter and bind the check state of check boxes to a field of any type in a data source.

The TreeViewControl.CheckBoxFieldName property binds the state of check boxes to a field of the Boolean or Nullable<Boolean> data type in a data source.

See Also