Tagged Questions

17
votes
6answers
11k views

ObservableCollection Doesn't support AddRange method, so I get notified for each item added, besides what about INotifyCollectionChanging?

I want to be able to add a range and get updated for the entire bulk. I also want to be able to cancel the action before it's done (i.e. collection changing besides the 'changed'). Related Q ...
4
votes
2answers
555 views

How can I raise a CollectionChanged event on an ObservableCollection, and pass it the changed items?

I have a class that inherits from ObservableCollection and adds a few additional methods such as AddRange and RemoveRange My base method call is this: public void AddRange(IEnumerable<T> ...
4
votes
3answers
547 views

How does ObservableCollection<T>.Add work?

I was trying to implement a specialized collection that works like ObservableCollection to encapsulate some more mechanisms in it, to do that i also let my collection inherit from Collection and i ...
3
votes
2answers
77 views

How to refresh a data-bound collection in c#?

Im writing a simple wpf application, but Im stuck. I'd like to achieve, that I have a filter class, and If the id has been changed in the filter class by a user input, a list should refresh applying ...
3
votes
2answers
736 views

EntityFramework EntityCollection Observing CollectionChanged

I'm using EntityFramework database first in an application. I would like somehow to be notified of changes to an EntityCollection in my ViewModel. It doesn't directly support INotifyCollectionChanged ...
3
votes
2answers
940 views

Observable Stack and Queue

I'm looking for an INotifyCollectionChanged implementation of Stack and Queue. I could roll my own but I don't want to reinvent the wheel.
2
votes
1answer
122 views

How can an ObservableCollection fire a Replace action?

In the documentation of the event args of NotifyCollectionChangedEventArgs, there is an action called Replace (in addition to Add, Remove, Move, etc.). When can this be fired? I can't see any Replace ...
2
votes
2answers
103 views

NotifyCollectionChangedAction: object instance on removal?

I am currently implementing the INotifyCollectionChanged interface for a collection with generally quite critical and short-lived items. All of those items implement IDispose, which can be called ...
1
vote
2answers
37 views

Un-subscribing from CollectionChanged event of a collection stored in an attached property

Ok, so I have an attached property (declared in a static class) which attaches an INotifyCollectionChanged property to an object. When the property is set, I want to start monitoring the collection ...
1
vote
2answers
90 views

ObservableCollections and changes to properties in C#

I'm working with an observable collection of a Job class I have defined. I have binded a method to handle the INotifyCollectionChanged event. MSDN tells me that INotifyCollectionChanged is a "listener ...
1
vote
3answers
123 views

INotifyCollectionChanged — How often does it fire (and how do they make it so efficient/fast)?

Basically, I'm wondering how it is actually efficient here. Sample code: void GetItems() { foreach (var item in items) myObservableCollection.Add(item); } Won't this fire off the ...
0
votes
3answers
80 views

Why does INotifyCollectionChanged use IList

Reading up here, I undestand why it is not IList<T>. But why IList at all? It makes no sense to add to it, so it should be just an IEnumerable, or if you really want an indexer (no reason why), ...
0
votes
2answers
905 views

Examples of collection changed events on Observable Collection

I have listbox in a WPF application that displays an observable collection of photo objects. When a photo is added to the collection the UI needs show the new image right away. I understand this can ...
0
votes
1answer
802 views

How to get property name from the sender object of an INotifyPropertyChanged PropertyChanged event

I have a base DependencyObject class where I have a method that takes an object, gets the properties, and for each property that is a type that implements INotifyPropertyChanged, I add a new ...
0
votes
1answer
141 views

WPF how to detach event hooks in UserControls

I have a WPF UserControl that contains a ComboBox. I need to attach an event listener to the ComboBox.Items collection. public MyUserControl() { InitializeComponent(); ...
0
votes
1answer
593 views

Custom ObservableCollection

I have a question about a class I created that is similar to the ObserverableCollection. My class basically has the same same functionality as it, but I add some automatic sorting features to it when ...