Skip to main content
All docs
V25.1
  • 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.v25.1.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