Tagged Questions
ObservableCollection is a .NET collection class that sends event notifications when items are added, removed, replaced, moved, or reordered in the collection, or when the entire contents of the collection are replaced.
26
votes
14answers
8k views
When Clearing an ObservableCollection, There are No Items in e.OldItems
I have something here that is really catching me off guard.
I have an ObservableCollection of T that is filled with items. I also have an event handler attached to the CollectionChanged event.
When ...
21
votes
2answers
3k views
difference between ObservableCollection and BindingList
I want to now the difference between ObservableCollection and BindingList because I used both to notify for any add/delete change in Source but I actually do not know the difference between these two ...
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
...
15
votes
3answers
4k views
Why aren't classes like BindingList or ObservableCollection thread-safe?
Time and time again I find myself having to write thread-safe versions of BindingList and ObservableCollection because, when bound to UI, these controls cannot be changed from multiple threads. What ...
14
votes
7answers
15k views
Sorting an observable collection with linq
I have an observable collection and I sort it using linq. Everything is great, but the problem I have is how do I sort the actual observable collection? Instead I just end up with some IEnumerable ...
14
votes
2answers
9k views
ObservableCollection(Of T) vs BindingList(Of T)?
I've developped some data based Winforms Application this last two years and all works fine. This application are built on layers (DataAccess, Business Logic and UI). For the Businness Logic, all my ...
13
votes
5answers
1k views
Optimal LINQ query to get a random sub collection - Shuffle
Please suggest an easiest way to get a random shuffled collection of count 'n' from a collection having 'N' items. where n <= N
12
votes
7answers
15k views
ObservableCollection not noticing when Item in it changes (even with INotifyPropertyChanged)
does anyone know why this code doesn't work:
public class CollectionViewModel : ViewModelBase {
public ObservableCollection<EntityViewModel> ContentList
{
get { return ...
11
votes
2answers
3k views
ObservableCollection and threading
I have an ObservableCollection in my class. And further into my class I have a thread. From this thread I would like to add to my ObservableCollection. But I can't do this:
This type of ...
10
votes
3answers
2k views
Should my ViewModel have an ObservableCollection of Views or ViewModels?
I'm trying to understand the basic MVVM design approach when using ItemsControl by binding it via DataTemplates to ObservableCollections on the ViewModel.
I've seen examples that bind to ...
8
votes
4answers
2k views
How can I make a read-only ObservableCollection property?
I'd like to expose a property on a view model that contains a list of objects (from database).
I need this collection to be read-only. That is, I want to prevent Add/Remove, etc. But allow the ...
7
votes
1answer
663 views
Custom ObservableCollection<T> or BindingList<T> with support for periodic notifications
Summary
I have a large an rapidly changing dataset which I wish to bind to a UI (Datagrid with grouping). The changes are on two levels;
Items are frequently added or removed from the collection ...
7
votes
2answers
1k views
RemoveAll for ObservableCollections?
I am looking for Linq way (like RemoveAll method for List) which can remove selected items from my ObservableCollection.
I am too new to create an extension method for myself. Is there any way I ...
7
votes
1answer
3k views
How to bind items of a TabControl to an observable collection in wpf?
What is the simplest example of binding the items of a TabControl to an ObservableCollection?
Each tab's content will have unique data, and indeed this data will have observableCollections of its own ...
7
votes
2answers
9k views
Observable Collection Property Changed on Item in the Collection
I have an ObservableCollection. I've bound it to a ListBox control and I've added SortDescriptions to the Items collection on the ListBox to make the list sort how I want.
I want to resort the list ...
6
votes
1answer
331 views
Threading problem when adding items to an ObservableCollection
I'm updating an ObservableCollection of a WPF ViewModel in a WCF Data Service asynchronous query callback method:
ObservableCollection<Ent2> mymodcoll = new ObservableCollection<Ent2>();
...
6
votes
7answers
1k views
MVVM - implementing 'IsDirty' functionality to a ModelView in order to save data
Being new to WPF & MVVM I struggling with some basic functionality.
Let me first explain what I am after, and then attach some example code...
I have a screen showing a list of users, and I ...
6
votes
5answers
439 views
What is the use of ObservableCollection in .net?
What is the use of ObservableCollection in .net? Please share some code snippet.
6
votes
1answer
3k views
How to filter Observable Collection Class Collection
I have implemented Linq-To-Sql..
Add necessary table in it...
after that linq class will automatically set property for field..
I implemented one class using ObservableCollection class.. and pass ...
6
votes
2answers
970 views
How to keep collections of viewmodels and models in sync
I'm using the wpf toolkit datagrid to display an observable collection of AccountViewModels.
The thing is when I delete an account from the grid, I want it removed from the ObservableCollection - to ...
6
votes
8answers
13k views
A better way of forcing data bound WPF ListBox to update?
I have WPF ListBox which is bound to a ObservableCollection,
when the collection changes, all items update their position.
The new position is stored in the collection but the UI does not update.
So ...
6
votes
2answers
1k views
Using an ObservableCollection<T> with Background Threads
It seems like Microsoft had a great idea with the ObservableCollection. They are great for binding, and are super fast on the UI.
However, requiring a context switch to the Dispatcher Thread every ...
6
votes
3answers
3k views
Can not operate ObservableCollection in multi threads
It seems the ObservableCollection only support add, remove, clear operation from the UI thread, It throw Not Support Exception if it is operated by a NO UI thread. I tried to override methods of ...
5
votes
4answers
68 views
MVVM property depends on a graph of objects
I am working with WPF+MVVM.
I have a VM which contains a Customer property. The Customer has an ObservableCollection of Orders. Each Order has an ObservableCollection of Items. Each Items has a ...
5
votes
1answer
128 views
ObservableCollection visualizer - does such a thing exist?
I am finding myself working with ObservableCollection quite a bit. I've looked around, but I can't seem to find an ObservableCollection Debug Visualizer.
Does such a thing exist?
5
votes
5answers
1k views
WPF ObservableCollection<T> vs BindingList<T>
In my WPF app I have a XamDataGrid. The grid is bound to an ObservableCollection. I need to allow users to insert new rows through the grid but it turns out that in order for the "Add New Row" row ...
5
votes
3answers
333 views
BlockReentrancy in ObservableCollection<T>
Could someone please be kind enough to explain to me what the purpose of the BlockReentrancy Method is in the ObservableCollection<T> ?
MSDN shows the following as an example:
//The typical ...
5
votes
3answers
674 views
What's the best way to update an ObservableCollection from another thread?
I am using the BackgroundWorker to update an ObservableCollection but it gives this error:
"This type of CollectionView does
not support changes to its
SourceCollection from a thread
...
5
votes
3answers
2k views
Update a ObservableCollection with a background worker in mvvm
Ok, I recently implemented a background worker to perform saves and loading of data.
However getting this to work on a save command has proved difficult.
Basically my Save command generates an event ...
5
votes
1answer
2k views
How do I update an ObservableCollection via a worker thread?
I've got an ObservableCollection<A> a_collection; The collection contains 'n' items. Each item A looks like this :
public class A : INotifyPropertyChanged
{
public ...
5
votes
5answers
335 views
Opinion wanted: Intercepting changes to lists/collections
Although BindingList<T> and ObservableCollection<T> provide mechanisms to detect list changes, they don't support mechanisms to detect/intercept changes before they happen.
I'm writing a ...
5
votes
1answer
237 views
Check if a ObservableCollection, and if so display an alternative xaml!
I have a ListView with a binding to a ObservableCollection. Further I am listing out all items in the ObservableCollection. Now, Is there a good way to check if the ObservableCollection is empty, and ...
5
votes
4answers
4k views
Increasing WPF ObservableCollection performance
At present I have two WPF listboxes imitating the following functionality
I am using 2 ObservableCollections to allow users to select whatever items they require (flexibility is the key here). The ...
5
votes
4answers
3k views
ObservableCollection and Item PropertyChanged
I've seen lots of talk about this question but maybe I'm just too much of a newbie to get it. If I have an observable collection that is a collection of "PersonNames" as in the msdn example (http: ...
5
votes
2answers
4k views
Merged ObservableCollection
I have two ObservableCollections and I need to show them in one ListView control together. For this purpose I created MergedCollection which presents these two collections as one ObservableCollection. ...
4
votes
3answers
251 views
viewmodel for gridview with column headers c#
I need a solution for this.
I need to create a view model for grid view. This viewmodel should be a strong typed one. ex.
List<Person> lstPersons=new List<Person>();
something like ...
4
votes
1answer
300 views
Fast performing and thread safe observable collection
Observable collections raise notifications for each action performed on them. Firstly they dont have bulk add or remove calls, secondly they are not thread safe.
Doesnt this make them slower? Cant we ...
4
votes
3answers
118 views
Is it wrong to use the Dispatcher within my ViewModel?
I am converting a chat parser for a game i play that i wrote in c# winforms over to wpf, mainly just to get a better handle on MVVM and wpf. Here is a run down of how i have my project set up
View:
...
4
votes
2answers
407 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
1answer
108 views
How to call a public event from a static function in the same class?
I have a class that contains an ObservableCollection of another class. I want to be notified if one of the class members is changed, because I need to do some calculating in the MediaCollection class. ...
4
votes
1answer
96 views
Reusing Binding Collections for WPF
I am working on a WPF app using the MVVM patterm, which I am learning. It uses EF4. I am trying to use a similar tabbed document interface style; several combo boxes on these tabs have the same items ...
4
votes
3answers
481 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 ...
4
votes
2answers
288 views
Linq search result by closest match
I have an ObservableCollection, which holds a Person object. I have a search feature in my application, and would like to display the most relevant results at the top. What would be the most efficient ...
4
votes
1answer
1k views
Is there a Threadsafe Observable collection in .NET 4?
Platform: WPF, .NET 4.0, C# 4.0
Problem: In the Mainwindow.xaml i have a ListBox bound to a Customer collection which is currently an ObservableCollection< Customer >.
...
4
votes
2answers
2k views
ObservableCollection : calling OnCollectionChanged with multiple new items
please note that I am trying to use NotifyCollectionChangedAction.Add action instead of .Reset. the latter does work, but it is not very efficient with large collections.
so i subclassed ...
4
votes
2answers
936 views
Why isn't it possible to update an ObservableCollection from a different thread?
In a multi-threaded WPF application, it is not possible to update an ObservableCollection from a thread other than WPF window thread.
I know there are workarounds, so my question is not how to avoid ...
4
votes
2answers
455 views
Use example of Scala ObservableSet Trait
Could anyone help me telling me how to use scala's ObservableSet trait?
Thank you very much in advance
4
votes
1answer
177 views
what is the most efficient way to identify and replace an object within an ObservableCollection?
I have a method that receives a customer object which has changed properties and I want to save it back into the main data store by replacing the old version of that object.
Does anyone know the ...
4
votes
3answers
5k views
How do I update an existing element of an ObservableCollection?
I have an instance of ObservableCollection bound to a WPF listbox with two separate data templates (one for display, one for editing). The data template for editing has a one-way binding on the ...
3
votes
4answers
104 views
.NET - Collections and inheritance
I have three classes with common parent. Let's say parent is Animal and children are Dog,Cat and Parrot.
And I have one observable collection which contains collection of animals user is working ...