Tagged Questions

0
votes
1answer
20 views

ObservableCollection<T> in Winforms and possible alternatives

Hey there! Winforms .net 3.5 app. In my app I have a generic class that looks like so: public class FilterItem { public FilterItem() { } public string FilterProperty { get; s …
4
votes
4answers
99 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 hap …
0
votes
2answers
16 views

ObservableCollection turns into an Array after transported using WCF

I got a class called "Board" and one of its property's is an ObservableCollection. When i send the ObservableCollection through WCF (from server to client) end call it from my prox …
2
votes
4answers
1k 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') …
1
vote
4answers
60 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. …
0
votes
2answers
84 views

Keyed ObservableCollection in Silverlight

Hi everybody, I want to implement a keyed observable collection in Silverlight, that will store unique objects based on a property called Name. One way of doing it is to use the O …
0
votes
1answer
30 views

C# - How do I change the value of a property based on changes to another property (ObservableCollection)?

How do I change the value of TotalPublicationsRead, when the Read property of a Publication has changed? public class Report { public ObservableCollection<Publication> Pu …
0
votes
1answer
62 views

wpf datagrid observablecollection

Im working on a large database application using WPF. So far, I was able to create a DataContext using Link to Sql class, store it in an ObservableCollection, and fed it to my Data …
2
votes
3answers
78 views

Is there a List<T> in .NET 2 that raises events when the list changes?

I have used ObservableCollection<T> in the past, but that seems to belong to WPF and therefore .NET 3. And if there isn't what would be the appropriate interface for that? I …
1
vote
1answer
39 views

ArgumentOutOfRangeException when replacing items in an ObservableCollection<T>

I'm working on a Refresh() extension method for ObservableCollection which adds, removes or replaces items based on a matching key (this means when bound to a DataGrid the grid doe …
0
votes
2answers
26 views

ObservableCollection -> Listbox

I know this has been asked different ways several times, but I'm just not getting it. Why don't I see my test strings in the listbox? .cs public partial class Window1 : Window …
1
vote
4answers
139 views

Optimal LINQ query to get a random sub collection

Please suggest an easiest way to get a random collection of count 'n' from a collection having 'N' items. where n <= N
1
vote
1answer
53 views

Best way to keep ObservableCollection and ObjectContext in sync?

Hi, I have window with a listbox bound to an ObservableCollection of People (a set of entity framework objects that I retrieve in response to a users query: a search box), i then …
0
votes
1answer
43 views

Problems using ListBox and observable collection as a debug log

I have a listbox bound to a view model observable collection: This works fine, minus one little hitch... assuming that the observable collection contains strings, the whole thin …
0
votes
4answers
64 views

Why can’t I set object derived from ObservableCollection<Proddata> equal to object returned as ObservableCollection<Proddata>?

I get a compile error, "Cannot implicitly conver type 'System.Collections.ObjectModel.ObservableCollection to ProddataRecsObservable'. An explicit conversion exists" See comments i …

1 2 3 4 5 6 next
15 30 50 per page