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

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.v24.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