| DataGridFilterColumnControlSourceValues Property |
Returns all distinct source values of this column as string.
This can be used to e.g. feed the ItemsSource of an Excel-like auto-filter that always shows all source values that can be selected.
Namespace:
DataGridExtensions
Assembly:
DataGridExtensions (in DataGridExtensions.dll)
Syntax public IEnumerable<string> SourceValues { get; }
Public ReadOnly Property SourceValues 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