I have two controls - SearchFilter and SearchResult. Filter contains buttons with commands to filter results. Result control has a ListView with a binding to ICollectionView property.

<ListView ItemsSource="{Binding SearchList}">

my modelview with filter logic:

private void FilterTheResults()
{
    var list = (ListCollectionView) SearchList;
    list.Filter = x => ((SearchItem)x).Type == "Video";
}

The problem is as follows:
If I move buttons with commands from the filter control to the result one, my UI is updated after each filter action. But I want to keep these things separate. I have tried to use SearchList.Refresh() and PropertyChanged in FilterTheResults() without success.

link|improve this question

75% accept rate
It's recommended to post answers as answers instead of editing the question. I changed that for you. You might want to accept your answer. – Erwin Brandstetter Jan 16 at 13:10
feedback

1 Answer

up vote 0 down vote accepted

Editor's note: @Yevhen Martynov edited the answer he found into his question. I put it here as an answer instead.

The solution is the one instance of viewmodel for both controls (through DataContext of Window).

link|improve this answer
The system notified me that I need to wait 5 hours to answer myself. Thanks for help. – Yevhen Martynov Jan 16 at 13:45
feedback

Your Answer

 
or
required, but never shown

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