Top "Itemssource" questions

Why are DataContext and ItemsSource not redundant?

In WPF Databinding, I understand that you have DataContext which tells an element what data it is going to bind …

wpf data-binding datacontext itemssource
WPF TreeView hierarchical binding.

just starting with wpf. I need to bind the object (Hierarchical) Folder public class Folder { public Folder() { this.Name = string.…

wpf binding treeview itemssource hierarchicaldatatemplate
Custom ItemsSource property for a UserControl

Does anyone know how to make a custom ItemsSource? What I want to do is to make an itemsSource to …

wpf data-binding itemssource
Binding to DataContext outside current ItemsSource context

I have a DataSet bound to the Window.DataContext; I also have a DataGrid: <DataGrid ItemsSource={Binding Tables[Items]}&…

wpf data-binding datagrid itemssource relativesource
WPF: How do I hook into a ListView's ItemsSource CollectionChanged notification?

I have a ListView that is databound to an ObservableCollection ... <ListView x:Name="List1" ItemsSource="{Binding MyList}" /> I …

wpf listview observablecollection itemssource inotifycollectionchanged
WPF DataGrid ItemsSource Issue

Please let it be known that I am relatively new to WPF. I am creating a new ObservableCollection with the …

c# .net wpf datagrid itemssource
Difference between ItemsSource and DataContext as pertains to ListBox

I am not quite grokking the difference between ItemsSource and DataContext. Can someone explain it and back it up with …

silverlight silverlight-4.0 datacontext itemssource
WPF - Combobox SelectedItem not getting set?

I have a ComboBox that has its ItemsSource bound to a static List<CustomSettings> of options. The ComboBox …

wpf binding combobox selecteditem itemssource
COMBOBOX filtering in WPF with MVVM

I am developing an application using WPF mvvm approach. I have a requirement where I have to show a list …

wpf mvvm combobox itemssource