We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
89448b6
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: