I am using a ListView which is bound to a ICollectionView (ListCollectionView -> ObservableCollection) While loading a file containing data the collection gets filled. Every data item has a boolean flag, which indicates if it must be shown in the listview or must be hidden.

Currently I have done this in an ugly way. I am filling first the collection (listview) with data. The user can see this. After filling it I start a routine which filters (ICollectionView.Filter) the items, which do not match. The listview item count shrink at that moment.

Is there a better way to implement this?

link|improve this question

73% accept rate
feedback

1 Answer

Just set the Filter before you start filling the collection:

ObservableCollection<Foo> collection = new ObservableCollection<Foo>();
ICollectionView view = CollectionViewSource.GetDefaultView();
view.Filter = YourFilterMethod;
// Fill the collection
collection.Add(...);
link|improve this answer
Thanks for the answer. But is it not possible to use a kind of condition? The Listview shows only items which have a matching condition (a boolean property is true/false) – Ferhat Feb 12 '11 at 23:56
yes, you express that condition in the filter – Thomas Levesque Feb 13 '11 at 0:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.