过滤ObserverableCollection以仅显示某些项目

时间:2014-03-20 18:13:00

标签: c# wpf data-binding observablecollection icollectionview

我在这里关注此链接:http://jacobmsaylor.com/?p=1270

但是我遇到了问题,试图对它进行调整

<ListBox Name="PageList_ListBox" MouseDoubleClick="PageList_ListBox_OnMouseDoubleClick"
                             Background="#FFC9C9C9" Margin="0,5,0,0" ItemsSource="{Binding PageCollection, ElementName=This}">

public static ObservableCollection<MLBPage> _PageCollection = new ObservableCollection<MLBPage>();
public static ObservableCollection<MLBPage> PageCollection
        {
            get { return _PageCollection; }
        }

public ICollectionView _PageCollectionView { get; set; }

_PageCollectionView = CollectionViewSource.GetDefaultView(_PageCollection);

private bool FilterLeadersList(object item)
{
  MLBPage page = item as MLBPage;
  if (page.templateName.Contains("Leaders List"))
  {
    return true;
  }
  else
  {
    return false;
  }
}

我的MLBPage对象有两种类型......其中“templateName”可以是“Leaders List”或“Leader Headshots”..现在当我通过添加按钮来过滤集合时:

_PageCollectionView.Filter = FilterLeadersList;

整个集合只是过滤器(绑定到列表框的_PageCollection变成空白)而不是只包含名称中包含“领导者列表”的项目....

有关我如何修改此功能的任何帮助?

1 个答案:

答案 0 :(得分:3)

将您的代码更改为:

 private ObservableCollection<MLBPage> _PageCollection = new ObservableCollection<MLBPage>();            
 public ICollectionView _PageCollectionView { get; set; }

只做一次(例如在ctor内)

 //ctor
 _PageCollectionView = CollectionViewSource.GetDefaultView(_PageCollection);
 _PageCollectionView.Filter = FilterLeadersList,

使用clear,add,remove来改变你的_PageCollection。

将您的列表框绑定到您的视图

<ListBox ItemsSource="{Binding _PageCollectionView}"/>

使用Refresh刷新过滤器

 _PageCollectionView.Refresh();