Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
2k views

Why is CompositeCollection not Freezable?

I am writing an application using the MVVM pattern. I am providing data to my view by setting my view's DataContext property to an instance of my ViewModel. Generally I just use Binding from there ...
2
votes
2answers
1k views

How to handle a CompositeCollection with CollectionView features?

Is there a way to get notified when CompositeCollection's current location changes? I need to have the CompositeCollection monitored by a CollectionView, any ideas are welcommed.
1
vote
2answers
99 views

Iterating through items of CompositeCollection

Consider the code: ObservableCollection<string> cities = new ObservableCollection<string>(); ObservableCollection<string> states = new ObservableCollection<string>(); ListBox ...
1
vote
1answer
757 views

DataGrid crash on CompositeCollection Edit

I have a DataGrid. It's ItemsSource is bound to the ModelView's CompositeCollection through the ViewModel. The CompositeCollection consists of 2 ObservableCollections. The display on the grid is ...
0
votes
0answers
41 views

How to use CompositeCollection in WPF and MVVM

I have a WPF app using MVVM. I have a DataGrid on the form and the DataGrid has a column with a ComboBox that contains an ObservableCollection. I want to add a "Please Select From List" to the top of ...
0
votes
1answer
149 views

Data Binding a Collection Dependency Property to a menu in a User Control

I have a user control with its own context menu, however I need to add additional items to that menu. The approach I took was to have a dependency property called ContextMenuItems: Public Shared ...
0
votes
0answers
101 views

Can you use a CompositeCollection wrapping 'faux' rows and a real List<Foo> as the ItemsSource of a DataGrid?

I'm trying to manually insert some header and footer rows into a datagrid. I have found many examples here of inserting rows into the backing store, but that isn't an option here. I have also seen ...
0
votes
1answer
378 views

CompositeCollection breaks ComboBox AutoComplete-Feature?

push Hello everybody! I'm using a WPF ComboBox with IsTextSearchEnabled="True" (Autocomplete) and want to bind its ItemsSource-Property to a CompositeCollection. Unfortunately, the Combobox doesn't ...
0
votes
2answers
392 views

Any idea on how to sort a CompositeCollection?

I have a CompositeCollection that consists of ObservableCollections of two types: Companies and Contacts. Contact has a property FullName while Company has a property Name. I want to apply sorting so ...
0
votes
1answer
135 views

Work around for lack of Grouping in CompositeCollection

When I try to add a GroupDescriptor to my CompositeCollection I get an exception informing me that the CompositeCollection does not supporting grouping. I would like to know if anyone has found a ...