Skip to main content
A newer version of this page is available. .
All docs
V20.2

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.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, 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