What I want to do is FreezableCollection.AddRange(collectionToAdd)
Each time I add to the FreezableCollection an event is raised and something happens. Now I have a new collection I would want to add but this time I want the CollectionChanged event of the FreezableCollection to fire only once.
Looping through and adding them will raise the event for each new item.
Is there a way I can add to FreezableCollection all at a goal, similar to List.AddRange?
Derive from a collection and override the behavior that you'd like to change. I was able to do it this way: