Made a quick implementation myself:
public class ObservableCollectionEx<T> : ObservableCollection<T> where T : INotifyPropertyChanged
{
public ObservableCollectionEx()
: base()
{
}
protected override void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
Unsubscribe(e.OldItems);
Subscribe(e.NewItems);
base.OnCollectionChanged(e);
}
private void Subscribe(System.Collections.IList iList)
{
if (iList != null)
{
foreach (T element in iList)
element.PropertyChanged += (x, y) => ContainedElementChanged(y);
}
}
private void Unsubscribe(System.Collections.IList iList)
{
if (iList != null)
{
foreach (T element in iList)
element.PropertyChanged -= (x, y) => ContainedElementChanged(y);
}
}
private void ContainedElementChanged(PropertyChangedEventArgs e)
{
OnPropertyChanged(e);
}
}
Admitted, it would be kind of confusing and misleading to have the PropertyChanged fire on the collection when the property that actually changed is on a contained element, but it would fit my specific purpose. It could be extended with a new event that is fired instead inside ContainerElementChanged
Thoughts?
EDIT: Should note that the BCL ObservableCollection only exposes the INotifyPropertyChanged interface through an explicit implementation so you would need to provide a cast in order to attach to the event like so:
ObservableCollectionEx<Element> collection = new ObservableCollectionEx<Element>();
((INotifyPropertyChanged)collection).PropertyChanged += (x,y) => ReactToChange();