vote up 5 vote down star
1

Is there a collection (BCL or other) that has the following characteristics:

Sends event if collection is changed AND sends event if any of the elements in the collection sends a PropertyChanged event.

Sort of an ObservableCollection where T: INotifyPropertyChanged and the collection is also monitoring the elements for changes. I could wrap an observable collection my self and do the event subscribe/unsubscribe when elements in the collection are added/removed but I was just wondering if any existing collections did this already?

flag

3 Answers

vote up 3 vote down

If you want to use something built into the framework you can use FreezableCollection. Then you will want to listen to the Changed event.

Occurs when the Freezable or an object it contains is modified.

Here is a small sample. The collection_Changed method will get called twice.

public partial class Window1 : Window
{
	public Window1()
	{
		InitializeComponent();

		FreezableCollection<SolidColorBrush> collection = new FreezableCollection<SolidColorBrush>();
		collection.Changed += collection_Changed;
		SolidColorBrush brush = new SolidColorBrush(Colors.Red);
		collection.Add(brush);
		brush.Color = Colors.Blue;
	}

	private void collection_Changed(object sender, EventArgs e)
	{
	}
}
link|flag
2  
You should also note that FreezableCollections are constrained to hold only items that inherit from DependencyObject. – Sam Jan 28 at 9:39
vote up 0 vote down

Check out the C5 Generic Collection Library. All of its collections contain events that you can use to attach callbacks for when items are added, removed, inserted, cleared, or when the collection changes.

I am working for some extensions to that libary here that in the near future should allow for "preview" events that could allow you to cancel an add or change.

link|flag
vote up 6 vote down check

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();
link|flag
Marking this as the answer as nothing better (in my opinion) has surfaced – soren.enemaerke Jun 8 at 14:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.