Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
14k views

WPF DataGrid: DataGridComboxBox ItemsSource Binding to a Collection of Collections

Situation: I've created a DataGrid in XAML and the ItemsSource is binded to an ObservableCollection of a certain class that contains properties. Then in C#, I create a DataGridTextColumn and a ...
7
votes
2answers
3k views

Who has the best answer for why DataContext and ItemsSource are not redundant?

In WPF Databinding, I understand that you have DataContext which tells an element what data it is going to bind to and ItemsSource which "does the binding". But e.g. in this simple example it ...
6
votes
3answers
858 views

WPF DataGrid ItemsSource Binding Issue

I have a DataGrid in a WPF application that binds itself to an ObservableCollection of objects, and everything works fine. Now if I modify a cell in the datagrid during runtime, and delete the ...
6
votes
1answer
197 views

Custom collection crashes DataGrid on Edit

Im currently trying to bind the DataGrid.ItemsSource to a custom RowCollection, which implements IList and INotifyCollectionChanged: Public Class RowCollection(of T) Implements IList(Of T) ...
5
votes
2answers
731 views

WPF - reset ListBox scroll position when ItemsSource changes

I currently have a ListBox whose ItemsSource collection is bound to a property on my viewmodel, of type IEnumerable. When that preoprty's reference changes, the ListBox updates as expected, however I ...
5
votes
2answers
2k views

WPF DataGrid cannot Add a row when datasource is empty

CanUserAddRows="True" only 'works' when there's already data in the ItemsSource of the DataGrid. If it just so happens that there are no rows in the original list of items, then the DataGrid doesn't ...
4
votes
3answers
887 views

Change ListBox.ItemsSource Binding property on Button.Click?

Quick question... I have a ListBox with its ItemsSource property bound to a collection property in a viewmodel like so: <ListBox Name="CollectionsListBox" ItemsSource="{Binding ...
4
votes
3answers
1k views

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]}> <DataGrid.Columns> <DataGridTextBoxColumn ...
4
votes
2answers
2k views

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 examples? When would I use one or the other. I am reading the docs and it says ...
3
votes
2answers
70 views

Why shouldn't UserControls be used as an ItemsSource?

I was answering another question on here where the user had a ListView with an ItemsSource containing UserControls. I said I wouldn't recommend it, and got asked why. This really surprised me. I've ...
3
votes
2answers
490 views

C# WPF - ComboBox

I'm working on a custom control that internally uses a ComboBox. My problem is when the ComboBox is focused and has the drop-down open, it appears to focus the entire control. I would like to ...
3
votes
3answers
680 views

Unreasonable WPF DataGrid Loading Time

I've always had long loading times with WPF DataGrids, and I cannot find any similar reports online, so I suspected that I was doing something wrong. Now I am sure of it, since adding layout ...
2
votes
2answers
72 views

WPF Multiple ItemSources?

Is it possible to have multiple ItemSources for a single control? Given the code below: <ComboBox Margin="137,101,169,183" ItemsSource="{Binding collection}" SnapsToDevicePixels="True" ...
2
votes
4answers
374 views

WPF ItemsSource works in code-behind but not in XAML

I have a simple combobox with a checkbox inside as such: <ComboBox Height="23" HorizontalAlignment="Left" Margin="158,180,0,0" Name="comboBox1" VerticalAlignment="Top" Width="120" ...
2
votes
1answer
79 views

Data Binding with WPF

I'm new to WPF and this following has stumped me for a while now: I have an observableCollection of People object in my model that is bound to my tabControl. So each my a new People object is added, ...
2
votes
1answer
445 views

How can I use a collection class as a static resource in silverlight

I have a simple class named Customer with 2 properties. public Name {get;set;}public LastName {get;set} Then I made a collection class named CustomerList with only one public property named Customers ...
2
votes
1answer
469 views

WPF ComboBox Binding to Enumeration

I have a Combo Box that has ItemsSource Bound to an Enumeration using ObjectDataProvider, and its SelectedItem Property is bound to a property of a businessobject. For some reason it's binding ...
2
votes
4answers
213 views

Extension Method not compiling (No defintion for type 'string')

I'm trying to convert bytes into KB/MB/GB using the code below, however, I can't seem to get it working. The value of quota, is 60000000000. public static double BytesToKilobytes(this Int32 ...
2
votes
3answers
2k views

How do you bind menu items to a ContextMenu in silverlight, including the icon

I have a context menu and i want its menu items populated via a binding. The following code works <Button> <controlsInputToolkit:ContextMenuService.ContextMenu> ...
2
votes
3answers
362 views

WPF Merge ItemsSource Lists

I am working with a 2 lists in a backend class. Each list is a different type. Would like to present the user with a single list (containing a union of both lists) of which when an item in this list ...
2
votes
2answers
932 views

Trouble binding WPF Menu to ItemsSource

I would like to avoid having to build a menu manually in XAML or code, by binding to a list of ICommand-derived objects. However, I'm experiencing a bit of a problem where the resulting menu has two ...
2
votes
1answer
565 views

MVVM Property for datagrid itemssource

I have a datagrid whose itemsSource is bound to a multiconverter which uses a converter. <toolkit:DataGrid AutoGenerateColumns="False"> <toolkit:DataGrid.ItemsSource> ...
2
votes
2answers
1k views

ItemsControl.ItemsSource MVVM performance

I have an (non-virtualized) ItemsControl that binds its ItemsSource to a ObeservableCollection of ViewModel instances. Now once the large amount Model instances is loaded all the ViewModel ...
2
votes
1answer
2k views

WPF derived ComboBox SelectedValuePath issue

In our application we have a very large set of data that acts as our data dictionary for ComboBox lists, etc. This data is staticly cached and keyed off of 2 variables, so I thought it wise to write ...
2
votes
2answers
3k views

WPF: Setting ItemSource in XAML vs. code-behind

Since this is WPF, it may look like lots of code, but don't be frightened, the question is really simple! I have the following XAML: <Window ...
2
votes
2answers
1k views

Set ItemsSource of a ComboBox to an Array of Integers?

Set ItemsSource of a ComboBox to an Array of Integers?
2
votes
1answer
2k views

ItemsSource + Converter + Treeview wont update

This one is fairly complex, hopefully I can make this clear enough for somebody to help me out. I have an object lets call it a Manager, the Manager has a collection of people that he manages, the ...
2
votes
3answers
656 views

WPF Databinding in XAML

I have little problem with databinding in my current project. I have an ObservableCollection I want to bind to an ListBox. public ObservableCollection<GeoDataContainer> geoList = new ...
1
vote
1answer
72 views

Reset scrollbar on ItemsSource change

Whenever I change the ItemsSource (or it fires a collection reset), WPF doesn't reset the scrollbar position of ListView/DataGrid to the top. This is no big deal if there is a nice way of doing this ...
1
vote
1answer
43 views

How to know when binding is completed?

When I set the .ItemSource() property on a DataGrid to a Collection, the call returns fast, but the actual binding happens afterwards. Since I want to display a waiting cursor, I need to detect when ...
1
vote
3answers
123 views

Silverlight and ComboBox: ItemsSource and SelectedIndex workaround

I have a SL ComboBox like the following: <ComboBox ItemsSource="{Binding UserList}" DisplayMemberPath="Name" /> where UserLists is: List<UserItem> and each UserItem is: public class ...
1
vote
1answer
188 views

Xaml: Itemssource binding + fallbackValue

I've got a Listpicker with a DataBinding on the Itemssource-Property. Binding works fine. Now I want to define a FallbackValue. My problem is, that the FallbackValue is interpreted as a list: ...
1
vote
4answers
325 views

Show if ItemsControl.ItemsSource is null

Greetings, I have a ItemsControl which template I changed to show a RadioButton for every object in the binded ItemsSource. However the ItemsSource can be empty and when it is empty I'd like to ...
1
vote
1answer
361 views

WPF Binding ItemsSource to a static method?

I have the following static method in an class called "Article" : public static ObservableCollection<Article> GetObservableCollection() { ... } And I'd like to bind this directly to the ...
1
vote
3answers
806 views

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 can't seem to find any event that are triggered when the ...
1
vote
1answer
527 views

WPF: ICollectionView - Filter one list if item is contained in another list?

Basically, I have 2 ListView's each binding to a different ItemsSource. List 1 can not be changed (it's a ReadOnlyObservableCollection). List 2 can be changed (through user interaction). I need to ...
1
vote
2answers
100 views

How do I get a UserControl derived class thats bound to ObservableCollection to respond to adds?

My collection seems fine as I am able to use a ListView and it responds correctly to adds, however when I nest a listview into a UserControl it doesn't. I've provided the pertinent code. I've ...
1
vote
1answer
447 views

WPF ListBox ItemsSource with DataTemplate

I have a ListBox with an ItemsSource pointing to a static variable, and a DataTemplate for the ListBox's ItemTemplate that should be displaying the Description property of the variable the ItemsSource ...
1
vote
1answer
76 views

Picking the right ItemsSource container

I have a UserControl I've written to display a few properties from a custom object. There are multiple instances of these objects so I have an ObservableCollection of them so I can set them as an ...
1
vote
1answer
568 views

Silverlight: How can I set a converter on a ComboBox ItemsSource in the code-behind?

I have a combobox that is populated at runtime with values from a loadoperation (I'm using RIA services) cboSite.ItemsSource = lo.Entities; However, I want to be able to add a null item to ...
1
vote
4answers
318 views

Why does my combobox freeze when the itemssource changes?

Steps to Reporoduce: When the app starts, open the combobox so the items get generated. Now click the "Click Me!" button. In the code behind, the itemssource of the combobox is changed. Now try to ...
1
vote
1answer
315 views

combobox with different datacontext for ItemsSource and SelectedItem

So i have a combobox as the CellEditingTemplate of a datagrid and selected item is bound to the datacontext of that row as expected, but i need the combobox to be populated from a ObservableCollection ...
1
vote
2answers
1k views

How to get cell level ComboBox for WPF DataGrid?

It looks WFP DataGridComboBoxColumn is using a single ItemsSource for all cells in this column. I have a case where the ComboBox items are dependent on the other cell in the same row. I managed to ...
1
vote
1answer
522 views

WPF - ItemsSource equivalent for Table in FlowDocument?

I'm trying to create a Table inside a FlowDocument inside a FlowDocumentPageViewer, as seen in this tutorial. I've never created a table in WPF before, and I was expecting there to be an ...
1
vote
2answers
114 views

WPF, nothing shows up in ListBox

I don't know what I'm doing wrong here. I have a ListBox whose DataContext and ItemsSource are set, but there is nothing in the ListBox when I run my app. When debugging, the first line of my method ...
1
vote
0answers
476 views

wpf datagridview combobox colmun ItemsSource binding problem

I cant seem to bind the datagridview's comboBoxColumn's ItemsSource Property the way I want. My Class hierachy used for this application is like this, I have a class called "PrescriptionViewModel" ...
1
vote
4answers
1k views

WPF - Best way to remove an item from the ItemsSource

I'm writing a custom ItemsControl (a tabbed document container), where each item (tab) can remove itself from the UI when the user closes it. However, I can't remove it directly from the ...
1
vote
1answer
150 views

Binding DataTemplates (or another aproach)

I'm having some troubles trying to dynamically generate content in WPF and after it bind data. I have the following scenario: TabControl - Dynamically generated TabItems through DataTemplate - ...
1
vote
1answer
808 views

Binding list of objects to WPF ListView

I have a list of objects which i want to bind to a ListView control in my WPF application. The Objects have a DataTemplate already, so no need to define that. The list of objects is a property in the ...
1
vote
1answer
724 views

Styling TabItem when populated with ItemsSource

I'm using a WPF Tabcontrol populated with a collection using Itemssource. <TabControl x:Name="_tabControl" ItemsSource="{Binding TabViewModelList}"> ...

1 2 3