Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get changes in ObservableCollection

public ObservableCollection<IndividualEntityCsidClidDetail> IncludedMembers { get; set; }

Let say I have a reference to IncludedMembers I want an event to occur when collection items are added/removed/edited.

like image 447
SOF User Avatar asked May 15 '11 10:05

SOF User


2 Answers

handle the CollectionChanged event

//register the event so that every time when there is a change in collection CollectionChangedMethod method will be called

    yourCollection.CollectionChanged += new System.Collections.Specialized.NotifyCollectionChangedEventHandler 
(CollectionChangedMethod);

Create a method like this

private void CollectionChangedMethod(object sender, NotifyCollectionChangedEventArgs e)
{
       //different kind of changes that may have occurred in collection
       if(e.Action == NotifyCollectionChangedAction.Add)
        {
            //your code
        }
        if (e.Action == NotifyCollectionChangedAction.Replace)
        {
            //your code
        }
        if (e.Action == NotifyCollectionChangedAction.Remove)
        {
            //your code
        }
        if (e.Action == NotifyCollectionChangedAction.Move)
        {
            //your code
        }
}
like image 124
Haris Hasan Avatar answered Sep 22 '22 15:09

Haris Hasan


Just register to the collection's CollectionChanged event. It will raise events when you add or remove items or otherwise, change the contents of the collection.

If you want to receive events when properties of the items in the collection change, you'd need to make sure that the items are IObservable first then Subscribe() to the individual objects.

like image 45
Jeff Mercado Avatar answered Sep 19 '22 15:09

Jeff Mercado