Tagged Questions

15
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
408 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
483 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 ...
2
votes
1answer
106 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
2k views

WPF ListBox not binding to INotifyCollectionChanged or INotifyPropertyChanged Events

I have the following test code: private class SomeItem { public string Title{ get{ return "something"; } } public bool Completed { get { return false; } set { } } } private ...
1
vote
1answer
61 views

ObservableCollection and CollectionChanged event as WCF datacontract

I use DataContract with ObservableCollection: [DataContract(Namespace = Terms.MyNamespace)] public class MyContract { internal MyContract () { List = new ...
1
vote
2answers
83 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
116 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 ...
1
vote
3answers
806 views

WPF: How do I hook into a ListView's ItemsSource CollectionChanged notification?

I have a ListView that is databound to an ObservableCollection ... <ListView x:Name="List1" ItemsSource="{Binding MyList}" /> I can't seem to find any event that are triggered when the ...
1
vote
1answer
1k views

Implementing inotifycollectionchanged interface

I need to implement a collection with special capabilities. In addition, I want to bind this collection to a ListView, Therefore I ended up with the next code (I omitted some methods to make it ...
1
vote
1answer
629 views

Handling ObservableCollection CollectionChanged Event

I've seen code like the following in the Silverlight toolkit and can't understand how it is safe to do: private void ItemsSourceCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { ...
0
votes
0answers
260 views

Use custom collection (uNhAddIns.WPF.Collection) with Fluent-Nhibernate

I have been struggling with this issue for a whole day now. Hope someone could help me out. The test project can be downloaded from here. I'm trying to use custom collection ...
0
votes
1answer
243 views

Inserting data to XML file notify ObservableCollection

I have a parent window which has a ListView that is bound to an ObservableCollection that gets it's data from an XML file. On the parent window, I have an add button that opens a opens a Modal Window ...
0
votes
2answers
815 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 ...