Does anyone know why this code doesn\'t work:
public class CollectionViewModel : ViewModelBase { public ObservableCollection Con
ObservableCollection will not propagate individual item changes as CollectionChanged events. You will either need to subscribe to each event and forward it manually, or you can check out the BindingList[T] class, which will do this for you.