I have a class that derives from ObservableCollection. I wanted to add some properties to this class (not the items in the collection) but have discovered that its implementation of PropertyChanged is protected. Since its protected I assume that is why my attempts at binding to these new properties in XAML are failing.
Short of creating an object that hangs off this class that implements INotifyPropertyChanged and houses these new properties, is there a way around this that I'm overlooking?