Top "Observablecollection" 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.

How can i cast into a ObservableCollection<object>

How can i cast from ObservableCollection<TabItem> into ObservableCollection<object> this doesnt work for me (ObservableCollection&…

c# observablecollection covariance
Observable Collection Property Changed on Item in the Collection

I have an ObservableCollection<T>. I've bound it to a ListBox control and I've added SortDescriptions to the …

c# wpf sorting collections observablecollection
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 …

wpf .net-4.0 c#-4.0 observablecollection task-parallel-library
WPF Multiple CollectionView with different filters on same collection

I'm using a an ObservableCollection with two ICollectionView for different filters. One is for filtering messages by some type, and …

c# wpf observablecollection collectionviewsource icollectionview
WPF LINQ and the ObservableCollection

In my WPF application I'd like to use LINQ as much as possible (especially to avoid foreach). But WPF works …

wpf linq observablecollection
How to get changes in ObservableCollection

public ObservableCollection<IndividualEntityCsidClidDetail> IncludedMembers { get; set; } Let say I have a reference to IncludedMembers I want an event …

c# observablecollection
WPF: Binding List to ListBox

I have a class: public class A : INotifyPropertyChanged { public List<B> bList { get; set; } public void AddB(B …

c# wpf binding listbox observablecollection
Unable to cast object of type 'MS.Internal.NamedObject' to custom type

I am not new to WPF, but I can't figure out this problem: I use an ObservableCollection<MyCustomType> …

wpf casting prism observablecollection
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. …

c# linq ienumerable observablecollection