Tagged Questions
The inotifycollectionchanged tag has no wiki summary.
16
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
...
5
votes
3answers
305 views
Why is there no ObservableKeyedCollection<TKey, TValue> in the .NET Framework?
The .NET Framework contains since version 3.0 the ObservableCollection<T>, but why isn“t there a ObservableKeyedCollection<TKey, TValue>.
Okay i could implement my own collection by ...
4
votes
2answers
417 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 ...
3
votes
2answers
66 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
667 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
301 views
Can I rollback collection changes on collection changed event?
I have 2 list views...and add/remove buttons between them.
On collection changed event of a list-view-collection in viewmodel, can i rollback the changes for a particular condition ?
3
votes
2answers
857 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
5answers
165 views
Observable LinkedList
In my WPF app, I have an ItemsControl whose items values are dependant upon the previous item displayed.
The ViewModel is an audio file split into parts of variable length, and i need to display it ...
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
3answers
831 views
INotifyPropertyChanged or INotifyCollectionChanged with DataTable?
Hi i am having some troube with DataTables. So What i need is to detect whenever i change any cell in the DataGrid of the DataTable that is binded.
How to do it? With INotifyPropertyChanged or with ...
2
votes
1answer
143 views
What is alternative of ASP.NET DataBind() in WPF?
I'm ad ASP.NET developer but recently develop WPF applications too. In ASP.NET whenever I needed to refresh data in a GridView I just call DataBind(). But what is alternative of it in WPF? As a ...
2
votes
3answers
376 views
what is notifycollectionchangedaction reset value
I have an observable collection...SelectableDataContext<T>..And in the generic class SelectableDataContext<T> is...having two private member variables
Private T item.
Private bool ...
2
votes
2answers
102 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 ...
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 ...
2
votes
1answer
2k views
ItemsSource + Converter + Treeview wont update
This one is fairly complex, hopefully I can make this clear enough for somebody to help me out. I have an object lets call it a Manager, the Manager has a collection of people that he manages, the ...
1
vote
1answer
66 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
1answer
59 views
Any use in hacking Silverlight NotifyCollectionChangedEventArgs to support multiple items?
The Silverlight version of NotifyCollectionChangedEventArgs differs from the full framework version, in that it does not accept multiple (added, changed, removed) items. The constructors that take ...
1
vote
2answers
34 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
0answers
66 views
Added item does not appear at given index '2'
I am getting this exception when I am trying to Delete the item from Dictionary which I am inheriting from INotifyCollectionChanged. When I am deleting for first time I am able to delete the item, ...
1
vote
2answers
84 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
814 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
631 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
3answers
73 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
114 views
using Reactive Extensions to monitor IEnumerable
I'm connecting to an object that asyncronously loads a collection of objects into an IEnumerable. At the time I connect, the IEnumerable may have items already in it's collection, and may add items ...
0
votes
2answers
83 views
WPF: what is the right way to display a 2D array in a user-drawn control
I want to make a user-drawn control for the only purpose of displaying a Color[,] array. The control itself should draw an NxM grid of rectangles of corresponding colors.
I'm trying to inherit from a ...
0
votes
0answers
263 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
818 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
762 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
658 views
How to create a custom observable collection using ConcurrentDictionary, INotifyCollectionChanged, INotifyPropertyChanged
I am trying to create an ObservableConcurrentDictionary. This object will be used in a multithreaded application, and it's data is used to populate a control via the controls ItemsSource property.
...
0
votes
1answer
133 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
278 views
canceling remove action - NotifyCollectionChangedAction
I am using the following code in my viewmodel to delete items out of a collection:
UnitMeasureCollection.CollectionChanged += new ...
0
votes
1answer
568 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 ...
0
votes
2answers
121 views
Which NotifyCollectionChangedAction is used to indicate that an item changed?
When implementing INotifyCollectionChanged and raising the CollectionChanged event, you must provide a NotifyCollectionChangedAction argument. Which NotifyCollectionChangedAction is used to indicate ...
0
votes
3answers
578 views
How do I update an IValueConverter on CollectionChanged?
Here's a basic example to explain my problem. Let's say I have
ObservableCollection<int> Numbers {get; set;}
and an IValueConverter that returns the sum of Numbers.
Normally what I'd do is ...
0
votes
4answers
542 views
ObservableQueue?
Has anyone written a version of .Net's generic Queue that implements INotifyCollectionChanged, or is there one hidden deep in the .Net framework somewhere already?