I got 3 listviews. The itemsources is bound to an ObservableCollection the person class has an integer property(with INotifyPropertyChanged) "teamID". Now I want to filter the listviews depending on the team they are in, is there a way to do it easy(I know 2 solutions for it but I think they are not good, 1 is to make 3 ObservableCollection but that will be complex to keep track and transfer all the persons to the right ObservableCollection , or use a trigger like Visibility to Visible if the teamID is the right teamID^^) I got 3 buttons and if I select an item(person) on any of the listviews, depending on the button clicked that person teamID will change. (But I also want him to change to the right listview depending on teamID)
Hope you understand, otherwise feel free to ask for more details.