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.

learn more… | top users | synonyms

1
vote
0answers
21 views

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 one is for counting checked messages. As you can see message filter ...
0
votes
0answers
19 views

Sorting ObservableCollection by nullable class property and ThenBy

I am trying to sort an ObservabkeCollection object containing the following class public Favourites(string title=null, string uri=null, string folder=null, bool delete=false) { this.pageTitle = ...
0
votes
2answers
45 views

Design Review - Resolving IDispatcher Or Dispatcher instance

I am in a process of extending ObservableCollection<T>, which will notify collection change back to UI thread from ViewModel in an ideal MVVM scenario. To achieve this, I am thinking of ...
0
votes
2answers
77 views

Why does the Foreach doesn't impact?

The code below doing a simple thing. manipulate the API's raw data and bind it to the view model's property. I fetch data from a web service and save it to a object named calljsonObject. This is the ...
2
votes
2answers
61 views

Best Practice Observablecollection<Model> vs Observablecollection<ViewModel>

Which one is the better solution to hold my data or does it depends on some conditions? sample situation 1: you need to display a list of data which can be modified in an new window after selection. ...
0
votes
2answers
37 views

How to insert an ObservableCollection property to a local sqlite-net db?

I have a quick question about the sqlite-net library which can be found here : https://github.com/praeclarum/sqlite-net. The thing is I have no idea how collections, and custom objects will be ...
1
vote
2answers
24 views

Adding an Item to the top of a LongListSelector

I have a Windows Phone app that follows the Databound App template. It's basically a LongListSelector control manipulated by an ObservableCollection() thing. Adding things is easy: I just do this: ...
0
votes
0answers
19 views

Real-time updates to ObservableCollection, accessing selectedItem on other User Control

I have this use case currently working on: I have a window with Two Tabs, One tab I have a user control where I am displaying a list of entities using a observable collection.I am selecting one of the ...
0
votes
0answers
15 views

DbContext detect when related collection entities added / removed

I have two ListViews. The first one displays all Parent entities (db.Parents.Local) and the second one should display all Parent.Children from the current item of the first ListView's ...
0
votes
0answers
28 views

updating ItemsControl at run time wp7

i am displaying a list of my Items using ItemsControl, so that i am just assigning datasource (List<Item> to the ItemsControl's ItemSource) but the problem is whenever the list is scrolled, i ...
0
votes
1answer
24 views

Using observablecollection with buttons

I have an observablecollection to create buttons the problem is that each of these buttons call the same event handler. i am trying to make it so that each button has their own unique id so that they ...
0
votes
0answers
12 views

ObservableCollection by Value Type

I think Code explains my problem public ObservableCollection<Project> Project { get; set; } private Project _current; public Project Current { get { return _current; } ...
1
vote
1answer
35 views

Asynchronously populate DataGrid in WPF

I have a DataGridView in a WPF application. Retrieving the whole data is a long-running task that involves intensive I/O. I thought it could be a good idea to populate the grid asynchronously, i.e. ...
0
votes
1answer
20 views

Saving a collection of custom objects in application settings

I followed Trouble saving a collection of objects in Application Settings to save my ObservableCollection of custom objects which is bound to a DataGrid in the application settings, but the data is ...
0
votes
2answers
47 views

Fill data in ObservableCollection using LINQ

I have a structure as below. public class CategoryClass { public decimal Category_ID { get; set; } public string Category_Name { get; set; } //public System.Nullable<char> ...
0
votes
2answers
46 views

Alternative to observablecollection in asp.net mvc

I had a WPF application, where i used ObservableCollection to refresh/change/add to the view from the viewModel with the help of binding. Now im having additional requirement to create a web ...
0
votes
0answers
20 views

Dynatree as Observable Collection in asp.net mvc

I'm using dynatree with which I'm only using the nodes for: icon href Based on certain conditions I need to change the icons of the nodes periodically(~10s). If I use , dynatree.getTree() ...
0
votes
0answers
15 views

Bind CheckListBox to ObservableCollection

I have a 2 properties ObservableCollectionProjectUsers ObservableCollectionChosenProjectUsers I put in a window a CheckListBox that shows all the ProjectUsers. I want ChosenProjectUsers to hold ...
0
votes
2answers
38 views

WPF binding ObservableCollection with converter

I have an ObservableCollection of strings and I'm tring to bind it with converter to ListBox and show only the strings that start with some prefix. I wrote: public ObservableCollection<string> ...
0
votes
1answer
67 views

WPF - Observable collection binding error

I am tring to create a simple program that connect ObservableCollection to ListBox. I wrote: public ObservableCollection<int> Values { get; set; } and public MainWindow() { ...
0
votes
1answer
29 views

Navigating records in a databound WPF window

I'm fairly new to WPF and I've been reading many tutorials and yet while I could find many guides that showed how to bind data to textboxes and such, I couldn't find anything about navigating such ...
0
votes
0answers
15 views

Reach DataContext's property in DataTemplateSelector class to choose a inner Data template in the nested DataTemplates/Collections

I use nested DataGrids. Both are implemented in a user control, and are imported in my View: SimulatorView: <UserControls:HistoricalPageTable DataContext="{Binding ...
0
votes
1answer
28 views

Using an ObservableCollection in a service

I have a few projects. One of the projects will be deployed as a Windows Service. An other project is a WPF application. There are a few other applications managing some data (of external hardware or ...
0
votes
2answers
38 views

WPF Editable combobox - preserve input when updating observable list

How can I get my editable combobox to both accept and preserve user input, while dynamically updating options available in the combobox? What I'm trying to accomplish is allowing the user to begin ...
0
votes
1answer
103 views

WPF Create user control dynamically on change of observablecollection OR Visualize nested ObservableCollections by using nested User controls

I am new to WPF, and I can't find a solution to my problem. I've got an Observable Collection in my ViewModel: ObservableCollection<Process> Within the Process class is another ...
1
vote
2answers
45 views

Portable Class Library and ObservableCollection, updating UI Thread

I'm not very experienced with this topic so forgive me if this isn't very clear. I've created a Portable Class Library that has an ObservableCollection of Sections, and each secion has an ...
0
votes
2answers
46 views

Metro App CollectionViewSource ObservableCollection Filter

It appears that filtering an ObservableCollection with CollectionViewSource is not possible in WinRT: See here! I can filter using LINQ, but how do I get the UI to update if changes that affect the ...
0
votes
1answer
45 views

Dynamic views in WPF

I'm trying to dynamically change UserControl views that are defined in an ObservableCollection. public class MItem : INotifyPropertyChanged { private UserControl _mView; public ...
0
votes
2answers
51 views

Binding to collections in WPF

So I finally decided to move from WinForms to WPF, and I'm having quite an interesting journey. I have a simple application in which I bind an ObservableCollection to a ListBox. I have an Animal ...
1
vote
1answer
77 views

Catel (MVVM framework) ObservableCollection

I'm Using Catel to implement a WPF Application. I have a class that extends from ObservableCollection and every time an Item is inserted The UI must be updated. CODE (simplified version) : ...
-1
votes
0answers
11 views

Updating UI after Collection has been fully loaded

I am binding an ObservableCollection object to my defaultViewModel in an async call. The object returns, but has not been completely loaded. To be more specific, this object has an ...
0
votes
2answers
79 views

WPF ComboBox Binding to ObservableCollection

I'm new to WPF And I have a question. I have the Organization module: class Organization : ObservableObject { public string OrganizationName { get; set; } } I have the ViewModel of the ...
0
votes
2answers
31 views

NHibernate CreateSqlQuery() result to an ObservableCollection

I've the following: using (ISession session = Config.SessionFactory.OpenSession()) { using (ITransaction transaction = session.BeginTransaction()) ...
0
votes
0answers
48 views

Serialize Observable Collection

I am trying to serialize an observable collection in C# using data contracts. However, I keep getting an error. I think there is something wrong with the way I use it, but I'm not sure. Here is an ...
0
votes
1answer
72 views

Displaying elements of ObservableCollection in data grid columns

I have a program where I am reading a .csv file with 2 columns, and my model has 2 properties. I take instances of this model as the file is read and then add them to my ObvervableCollection. Here is ...
1
vote
1answer
49 views

Binding ObservableCollection of strings to templated ListBox

I have this collection ObservableCollection<string> Urls { get; set; } inside my data context class. I have a binding to it in my list box: <ListBox ItemsSource="{Binding Urls}"> ...
1
vote
1answer
69 views

Building an Observable Repository with Rx

I'm working in the common scenario whereby I'd like to access a subset of a repository and not worry about having to keep it updated e.g. 'get all orders whose price is greater than 10'. I have ...
0
votes
1answer
108 views

How to update RadCartesianChart / ObservableCollection

In my Windows 8 app I have a RadCartesianChart that looks like this: <telerikChart:LineSeries ItemsSource="{Binding GraphData, Mode=TwoWay}" ShowLabels="True"> ...
0
votes
2answers
113 views

JSON.NET Line serialization winrt

I'm having some trouble with serializing a ObservableCollection of Lines (Shape). I'm developing for Windows RT and I'm using JSON.NET v5.02. I'm getting the following exception for the code below: ...
0
votes
0answers
42 views

Bind 2 Observable collections to eachother

I've got a usercontrol which has an ObservableCollection as a DP in his codebehind file. This control is used as part of a tabcontrol (tabitem). public static readonly DependencyProperty ...
0
votes
0answers
41 views

How can I step into an observable collection in C#?

Suppose I have a subject and call OnNext(). I'd like to be able to hit F11 and then go to the callbacks that were setup on calls to Subscribe. Right now that doesn't seem possible, even when the ...
0
votes
2answers
56 views

Refresh an ObservableCollection (overwrite)

How can I refresh the following ObservableCollection? public class ViewModelProperties { private ObservableCollection<ServerProperties> properties; public ...
-1
votes
2answers
90 views

ObservableCollection<class name>.Distinct() is not working

I have the next class: public class MapsDescModel : NotificationObject, IEqualityComparer<MapsDescModel> { public MapsDescModel(ObservableCollection<MainCategories> mainCategoty) ...
1
vote
0answers
10 views

Binding and recursion

I'm working on a project which binds entities to the tree view. The entity consists of: id, idParent, Name, ChildrenElements(observable collection in case any children are added). The program is ...
0
votes
1answer
36 views

Event's action performed on new thread

I have an observable collection var QueryList = new ObservableCollection<QueryData>(); Suppose I have implemented a method OnQueryListCollectionChanged for when this collection's ...
0
votes
0answers
57 views

No Columns being generated in WPF form using powershell

I have been struggling for days trying this to work. The strange thing is the code works on one machine, but not another. Both have powershell 3 and using the same .net assemblies loaded ( ...
0
votes
2answers
119 views

binding observable collection to listbox item source doesnt update unless onPropertyChanged fired

I am trying to display a list of filenames of uploaded files using a listbox. I have buttons to upload, open and delete files in the list box. I am using the mvvm pattern and have bound the itemsource ...
0
votes
1answer
55 views

Load XmlData from xml file to datasource(observableCollection)

Actually I want to populate dataGrid with Xml data present in xmlfile and want to add/remove/update the data in the Datagrid. I tried using XmlDataprovider which works fine in populating the dataGrid ...
0
votes
1answer
92 views

WPF Editable ComboBox incremental search

I have a Question about Combobox in WPF (C#) and incremental search. Maybe someone has a good idea how can i solve my Problem. I have in my application an ObservableCollectin with all zip-codes and ...
1
vote
1answer
143 views

Combobox not refreshing after adding items C# WPF

In my main window I have a class where I store all my data in ( called "Measconsettings"). This class ("Measconsettings") contains an ObservableCollection "DeviceDefinitionList" of an other class ...

1 2 3 4 5 23