Open zmollohan opened 5 days ago
Describe the bug Setting the filter on a CollectionViewSource raises a NullReferenceException
ObservableCollection<string> test = new() { "Test 1", "Test 2", "Test 3" }; CollectionViewSource filteredTest = new() { Source = test }; filteredTest.Filter = null;
Desktop/Platform
Additional context If I don't set a filter, the ListBox that filteredTest.View is bound to, does populate with the items.
ListBox
filteredTest.View
Describe the bug Setting the filter on a CollectionViewSource raises a NullReferenceException
Desktop/Platform
Additional context If I don't set a filter, the
ListBox
thatfilteredTest.View
is bound to, does populate with the items.