1
vote
2answers
28 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: ...
1
vote
1answer
40 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
2answers
44 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
74 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
2answers
53 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 ...
0
votes
1answer
92 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
55 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}"> ...
0
votes
1answer
114 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
114 views

Bind ObservableCollection to ListView

I am having some trouble to bind my collection to my listview. I have tried a lot of different approaches from others on here for binding, and also followed this tutorial at first. I made it to work ...
2
votes
4answers
430 views

ListBox item not updated when property changed

I have problem updating Listbox containing ObservableCollection when property of collection changes (adding/removing items from list works fine): listbox has set ItemsSource="{Binding ...
0
votes
1answer
125 views

WPF - Observable Collection new record from xml binding

I have a page with tabcontrol. I am binding a list of locations a tabitem in the control. The records are listed in a listview. I am able to edit records by binding input controls to the ...
0
votes
2answers
72 views

Bind observerbaleCollection to wpf combo box

I'm having Class call Apps. It has Observable collection called AvailableTypes. I want to bind this AvailableTypes observable collection to the wpf ComboBox. When form is loaded these AppId should ...
0
votes
2answers
353 views

WPF Observablecollection with INotifyPropertyChanged for ListView doesn't work

I have a wpf application and I want to update my listview when I add new value through the UI using Observablecollect. But I don't get what I expect. When I add new value I won't update my list view. ...
0
votes
2answers
83 views

DataBinding DataGrid to ObservableCollection<T> is creating 2 different instances of the DataGrid and only the default is shown

The data binding works as it I intend, kind of... The real issue I'm running into now is what I believe to be 2 different instances of my User Control, but only the original, debug list I implemented ...
0
votes
1answer
206 views

Bind an ObservableCollection to a wpf datagrid : Gris stay empty

I would like to bind an ObservableCollection to wpf datagrid. My ObservableCollection is not empty, but, my datagrid stay empty : public partial class Fenetre_EvtCode : Window { ...
-1
votes
1answer
61 views

is it possible to bind a datagrid to a object

I would like to bind a DataGrid to an object, and not to a collection of objects, My scenario is, I have a single record with a few columns in the database that the user will keep updating, and ...
1
vote
0answers
74 views

Changing source collection of ObservableCollection property

One of my library classes exposes a property that looks somewhat like this: Private _myCollection As New ObservableCollection(Of String) Public ReadOnly Property MyCollection As ...
0
votes
2answers
308 views

Implement AddRange on ObservableCollection with proper support for DataBinding

I would like my own descendant of ObservableCollection to support AddRange method. Here is what I currently have: public class ObservableCollectionPlus<T> : ObservableCollection<T> { ...
0
votes
2answers
523 views

LongListSelector bound to ObservableCollection does not update

I have an ObservableCollection, which is a collection of View Models which implement the INotifyPropertyChanged interface... public class FeedsViewModel : ObservableCollection<FeedViewModel> { ...
0
votes
0answers
216 views

Datagrid not updating when item added to ObservableCollection

I have a Client entity that has a collection of Notes. I have a DataGrid in my View that is databound to my Client.AuditableNotes collection and I can see the notes if they already exist in the ...
0
votes
0answers
100 views

Synching two listboxes bound to ObservableCollections implementing ICollectionView issue

I am currently working with Entity Framework data in MVVM. My simple application consists of two ListBoxes; the second ListBox returns a subset of the ObservableCollection that pertains to the ...
0
votes
1answer
73 views

ObservableCollection<EF4Entity> bound to ListView, but relation fields don't cause ListView to update

I have an ObservableCollection of Entity Framework 4 entities bound to a ListView. If I modify any of the normal, scalar properties of the entity, the values displayed in the ListView are updated. ...
0
votes
1answer
131 views

ObservableCollection + ICollectionView = ObservableCollectionView?

I have a View Model that exposes an ObservableCollection. Now I want to add grouping and therefore want to use a View class, like e.g. the ListCollectionView. But that is not a generic type. Also, if ...
1
vote
1answer
411 views

Binding Source changes current item when datagrid looses focus

I have a WinForm with 6 DataGridViews in VB.Net 2010, each with their own binding source. I have one additional main DataGridView that controls what is in the other grids. This is the only grid that ...
0
votes
0answers
208 views

Binding a GridView to an ObservableCollection in ASP.Net Web Application

I am developing my first ASP.Net Web Application, I am learning a lot, but I have a problem that I can't figure out. I have a GridView with a Collection as DataSource, if I bind the GridView to the ...
2
votes
0answers
139 views

Image object rendering is extremly slow in WPF DataTemplate

I'm creating a simple file browser with thumbnails. I'm using a ListBox with a custom DataTemplate to display objects in an ObservableCollection. <DataTemplate> <StackPanel Margin="5"> ...
0
votes
1answer
94 views

WPF: display a collection of datagrids in a custom format (with image)

I have 2 classes, one inside the other, and a prop with an ObservableCollection of the class with the sub-class collection. But I'm having a serious trouble in displaying the whole thing. First my ...
0
votes
1answer
305 views

Asynchronously adding to ObservableCollection (or an alternative)

Here's what I have - a ListBox with an ItemsSource set to a ObservableCollection<T> - where T is my custom class representing a file, containing just 2 DependencyProperties: Filename and ...
0
votes
1answer
136 views

Notification does not work for ObservableCollection

I have a class with 2 properties of ObservableCollection : Public ObservableCollection<User> Users { get {return this._users;}} Public ObservableCollection<User> Admins { get ...
-1
votes
3answers
533 views

WPF binding ObservableCollection<string> to ItemsControl not working [closed]

I have some string property that content need to be parsed, and displayed in separate controls. Let's say there are e-mails and urls separated by whitespaces. Displaying emails works fine, but urls ...
1
vote
3answers
132 views

How to invoke String.Joing on an ObservableCollection's bound property (to a ListView) that is a List<string>

I have a simple Observable collection with two public properties, int ID and List Targets. The code-behind looks like (simplified code to remove unnecessary and not relevant code): public class ...
0
votes
2answers
388 views

How to Bind with Observable collection of UserControl Type Objects

I am stuck to a data-binding issue in WPF. Following is the scenario. I have a Telerik's RadTileView which is bind to an ObservableCollection of type MyItem. public class MyItem : UserControl { ...
0
votes
1answer
360 views

Binding to a copy of an ObservableCollection

I have an ObservableCollection bound to a DataGrid and everything works fine. I want to filter the collection without going to the database repeatedly so I decided to use a backing collection to store ...
1
vote
1answer
42 views

Should I bind to a “dormant” object at designtime in XAML or wait until runtime in C#?

I want to bind my ListView to the results of a query. The query does not fire until the user enters some text and selects a button, though. Should I in this scenario create the binding on the fly ...
0
votes
0answers
154 views

ObservableCollection vs List for fixed number of items in Windows Phone

In my Windows Phone app, all collections bound to the views are ObservableCollections, and everytime I reload the data, I clear these ObservableCollections, load the new data in lists (it's a fixed ...
0
votes
1answer
78 views

Trying to convert a Winforms data source to a WPF bindable (ObservableCollection) type

I'm trying to convert a Winforms app to a WPF app and have this code: ObservableCollection<Dictionary<string, string>> PlatypusDict = new ObservableCollection<Dictionary<string, ...
1
vote
3answers
162 views

Get ObservableCollection from ListBox

Is there a way to determine the associated ObservableCollection programmatically from a ListBox? I bound the ItemsSource to a ListBox in my XAML and when a user selects an item from within it, I want ...
0
votes
2answers
126 views

Binding to a property in a collection which returns a sub collection

Is there any way to bind the ListBox 'ItemsSource' to the SeriaCollection XAxeLabels or YAxeLabels? If there is no way - i'd like to know why - and what is the workaround? The Binding currently ...
1
vote
2answers
196 views

Blank Row is not visible in data-bound DataGrid

I have an ObservableCollection bound to a DataGrid, and I want to be able to add rows in it at run time, using the actual rows. However, the blank row is not visible, therefore the user is not able ...
0
votes
0answers
206 views

Blank row is not visible in DataGrid

I am binding an ObservableCollection to a DataGrid, and I want to be able to add items in the observablecollection through the blank rows. However, when the list is empty at run time, this blank row ...
0
votes
1answer
131 views

Databinding a Sorted ComboBox

I have a WPF application with a number of ComboBoxes. Each ComboBox is bound to a SortedList, lets call this the datasource. The reason I chose this type for the datasource is simply because I'll be ...
0
votes
1answer
205 views

Update ObservableCollecttion on objects property changed

Hopefully someone can help me out with this. I am creating a Silverlight app which is used for editing images. A user has a project which contain layers which contain elements. (Elements are text and ...
0
votes
1answer
120 views

Silverlight Data Binding to Collection within Collection

Hopefully someone can help me out with this. I am creating a Silverlight app which is used for editing images. A user has a project which contain layers which contain elements. (Elements are text and ...
0
votes
1answer
525 views

TextBlock with databinding calculated value is not updating

I have a textblock that is binding to a double property called "AdminTime" in my JobItem class. AdminTime calculates the total admin hours that are in an observablecollection called TimeLog. I use a ...
0
votes
2answers
312 views

DataBinding reverses the order of my ObservableCollection?

I have the following custom observable collection (The code is taken in parts from Dean Chalk's blog http://www.deanchalk.me.uk/post/Thread-Safe-Dispatcher-Safe-Observable-Collection-for-WPF.aspx and ...
0
votes
2answers
149 views

Accidentialy getting items of an observable list in reverse order

I am using a custom observable collection class (credits go to Dean Chalke: http://www.deanchalk.me.uk/post/Thread-Safe-Dispatcher-Safe-Observable-Collection-for-WPF.aspx) in order to modify a ...
1
vote
1answer
405 views

Multiple Filters not working in DataGrid WPF

My Databinding works fine in my DataGrid, but when I try to get the collectionview from my CollectionViewSource, it is null, and my filter in DataGrid does not work. Here is the code: ...
0
votes
0answers
272 views

WP7 Select ObservableCollection Item using parameter passed from previous page

I have two table. Table 1 from a online service which forms the Listbox on my original Page. The second table is located in an internal DB and contains a uniqie field with the same values as a field ...
0
votes
1answer
550 views

Binding Listbox to ObservableCollection<T> not working WPF

I have a JobItem object, and inside it, I have: public ObservableCollection<string> BusinessUnit { get { return businessUnit; } set { ...
1
vote
1answer
507 views

Binding a listbox to an Observable Collection of type string in WPF

I am trying to create an application that tracks JobItems. In the application, the user clicks on a "New Job" button to create a JobItem. A new window (NewJobWindow) then pops up and the user must ...

1 2 3 4