항목이 변경 될 때 ObservableCollection이 알리지 않음 (INotifyPropertyChanged를 사용하더라도) 이 코드가 작동하지 않는 이유를 아는 사람이 있습니까? public class CollectionViewModel : ViewModelBase { public ObservableCollection ContentList { get { return _contentList; } set { _contentList = value; RaisePropertyChanged("ContentList"); //I want to be notified here when something changes..? //debugger doesn't stop here when IsRowChecked is to..