Skip to main content

DataControlDetailDescriptor.ItemsSourceValueConverter Property

Gets or sets the value converter that specifies the data binding for the detail.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public IValueConverter ItemsSourceValueConverter { get; set; }

Property Value

Type Description
IValueConverter

An object implementing the IValueConverter interface. Specifies the data binding for the detail.

Remarks

Use the ItemsSourceValueConverter property if you have implemented IValueConverter in a custom object that will supply data to Detail Views. The data context for the value converter is specified by the DataControlDetailDescriptor.ItemsSourcePath property. If this property is not set, then the data context is the master record.

If the ItemsSourceValueConverter and DataControlDetailDescriptor.ItemsSourcePath combination is insufficient for your data binding requirement, use the DataControlDetailDescriptor.ItemsSourceBinding property, which offers more flexibility.

See Also