Modifying an observable collection bound to a ListBox
- by Rohit Kandhal
I've a collection in viewmodel binded to listbox. I want to hide a particular type from the collection.
Here is the code:
public ObservableCollection [YZModeModelView] YZModeModelView
{
return this.XModelVIew.YZModelViewCollection;
}
I want to a particular type of model view's from YZModelViewCollection. eg. ModelView's with property abc set to null.
Any suggestions ...