private ICollectionView collectionView;
public ObservableCollection<LogEntity> Logs { get; set; }
this.collectionView = CollectionViewSource.GetDefaultView(Logs);
this.collectionView.Filter = delegate(object args)
{
return true;
};
Filter に委譲している処理で絞り込み処理を書いて、bool を返す。
DefaultView が用意されているので、こっちの方が楽チンだな。
0 件のコメント:
コメントを投稿