Hi. I have a ListBox that is bound to a ViewModel property of type BindingList(Of MyItem) (lets call it MyTrueList). The MyTrueList property actually looks at another BindingList(Of MyItem) and returns a list where MyItem.MyProperty = true. MyItem implements INotifyPropertyChanged.
I also have a button whose event changes the selected item's MyProperty to false.
I was under the impression that because I have set my ListBox' ItemSource to {Binding MyTrueList}, it will automatically update the list since I have changed the MyProperty value.
If it does not update it automatically, how should I tell the ListBox to check the MyTrueList value again?