Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个ListBox大约有 100 件物品。现在我想ListBox根据用户输入的内容进行过滤TextBox。我想实时搜索,所以我处理TextBox_OnTextChanged事件。
ListBox
TextBox
TextBox_OnTextChanged
我的第一个解决方案是在文本更改时设置ListBox's 。ItemsSource这真的很慢。
ItemsSource
许多人建议使用CollectionViewSource,但这并不能使它更快。
CollectionViewSource
如何ListBox 实时快速过滤?
检查数据绑定源的过滤方法
带有 ObservableCollection<T> 和动态过滤器的 Silverlight ListBox