views:

162

answers:

1

In a test project I've managed to AutoGenerate WPF DataGrid columns in the following scenario, where the data is stored in a Dictionary and binding is performed via PropertyDescriptors:

public class People:List<Person>{
     ...
}
public class Person:Dictionary<string,string>,INotifyPropertyChanged,ICustomTypeDescriptor
{

}

The problem I'm having is in my real life project I'm using MVVM so it's *People*ViewModel which inherits ViewModelBase and hence can't inherit List<Person>. I've tried implementing IList<Person> instead with an internal List<Person> and explicitly setting the DataContext to an IList<Person> reference but that didn't work.

I've seen a similar post on binding a win forms DataGridView here, so I'm wondering if the same sort of logic applies in WPF and primarily, what exactly causes the ICustomTypeDescriptor implementation to be picked up when inheriting List<T> that is missing when you simply implement IList<T> instead.

+1  A: 

The DataGrid uses the CollectionView for your collection to generate the properties. More specifically, it casts the CollectionView to IItemProperties, which the default CollectionView doesn't implement. If you don't implement IList (NOT the generic one), then the default CollectionView will be used.

So, implementing the non-generic IList interface should solve this (List<T> implements both, which is why it works if you derive from List<Person>).

Abe Heidebrecht
Fantastic, that works with an IList implementation as you suggested, many thanks :)
panamack