Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
5k views

ItemSource vs Datacontext in wpf

Can any one give me the difference between Itemsource and DataContext of Listview in WPF? With example
3
votes
2answers
1k views

Combo box Item source = ObservableCollection & I need a '-None-' dummy entry at the top

I have a combo box using an observable collection as a datasource and I want a "dummy" value of "None" as the first item in the box as it controls filters against other data sources. Other databound ...
2
votes
1answer
144 views

How to dynamically add elements in listbox.itemsource in wp7?

I have a listbox with datatemplate, with 2 textblocks which binding some properties of some class,i have a list with elements of type of that class,i want to dynamically show this elements i.e at ...
2
votes
1answer
120 views

ItemsControl ItemsSource lazy loading

Image you are creating a custom control behaving like ComboBox in WPF. As a source of items you provide IQueryable<T> (or any kind of IEnumerable collection), but you don't want to allow the ...
2
votes
2answers
172 views

ItemsControl-wrapping the contents inside the window

I am using an itemscontrol inside a window in WPF. The itemscontrol is bound with a collection and the collection is a group of view models(user controls). My problem - the view is going beyond the ...
1
vote
1answer
598 views

Wp7 ListBox ItemSource ObservableCollection IndexOUtofRange and Items are not updated

I have the following issue: I am creating a Windows Phone 7 application and I am using a ListBox which is bound to an ObservableCollection people. The implementation of this you see below: public ...
1
vote
1answer
251 views

How to bind the ItemSource inside the DataGrid to an element outside the DataContext, eg. ViewModel in Silverlight 4

I have a DataGrid with some text columns and a button. I want to bind button to a command on the ViewModel. Since, Columns are inside the context of the ItemSource, i want to change the DataContext ...
0
votes
1answer
89 views

Fire event when ItemsSource of ListView changes

I can't find an event that can be called after a window was loaded, and where i can get access to the ItemsSource of a ListView. The only thing i can think is the Loaded event in the ListView but when ...
0
votes
2answers
27 views

Issue when dynamically binding to a datagrid

OK I have a weird little issue I hope someone can help me with. To set the scene, I first of all have an object: public class Date { public DateTime _WeekDate; public ICollectionView ...
0
votes
1answer
220 views

Why does the DataGrid not update when the ItemsSource is changed?

I have a datagrid in my wpf application and I have a simple problem. I have a generic list and I want to bind this collection to my datagrid data source every time an object is being added to the ...
0
votes
1answer
167 views

WPF ItemSource returns null

I have a named class public class testClass { public testClass(string showCode, string urn) { ShowCode = showCode; URN = urn; } public string ShowCode { get; set; } ...
0
votes
1answer
83 views

View order of derived class variables in Silverlight DataGrid

I have the following situation in a Visual Studio 2010 (C#) Silverlight 4 project using the DataGrid (this is pseudocode for brevity sake): public class BaseClass { public string str1; ...
0
votes
1answer
602 views

Setting up a TreeView in Silverlight with a HierarchicalDataTemplate and Binding with ItemSource

I am trying to build a TreeView and have it set up like this link: Silverlight vs WPF - Treeview with HierarchialDataTemplate As a comment to the first actual answer provided the poster says how ...
0
votes
1answer
159 views

Silverlight, getting ItemSource data from data template programaticlly

i've got an ItemsControl with an ItemsSource of Hours. I represent each item by a border (in the data template). Now, each of those border has an hour data, and i want to retrieve that in code ...
0
votes
2answers
425 views

How to update source of WPF ListView?

I have a WPF ListView to wich I bind my collection. Properties of the objects in this collection are changed in a background thread. I need to update ListView when properties are changed. ...
0
votes
2answers
38 views

Why DisplayMemeberPath doesn't accept a standard property?

I am binding a List of object to a ComboBox. <ComboBox Name="comboPerson" DisplayMemberPath="Name"/> Where code behind looks like this: List<Person> myFriends = new ...
0
votes
1answer
415 views

binding combox in wpf datagrid

I have a list that I populate in the init of my viewmodel: ListOfEmployees = new List<EmployeeBO>(employeeRepository.GetEmployees(true, true)); I am trying to get a combobox in a datagrid to ...
0
votes
1answer
491 views

WPF Data-Bound Datagrid Filtering / Searching

I have a WPF application which uses a (currently) local database to act as a binding source. Using the Visual Studio 2010 tools I have a LINQ-SQL model which acts as the Datacontext for most forms. ...
0
votes
1answer
427 views

How do I insert ToolBar separators when binding ItemSource

I am binding a ToolBar to a collection of command view model objects. The objects in the collection have a property IsSeparator that when true I would like represented with a <Separator/> in ...