| 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; }
Public ReadOnly Property Values As IEnumerable(Of String)
Get
Property Value
Type:
IEnumerableStringRemarks
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