Click or drag to resize

DataGridFilterColumnControlValues Property

Returns all distinct visible (filtered) values of this column as string. This can be used to e.g. feed the ItemsSource of an AutoCompleteBox to give a hint to the user what to enter.

Namespace:  DataGridExtensions
Assembly:  DataGridExtensions (in DataGridExtensions.dll)
Syntax
public IEnumerable<string> Values { get; }

Property Value

Type: IEnumerableString
Remarks
You may need to include "NotifyOnTargetUpdated=true" in the binding of the DataGrid.ItemsSource to get up-to-date values when the source object changes.
See Also