DataGridView not showing properites of objects which implement ICustomTypeDescriptor

[*] DataGridView looks at the list version of metadata; the rules for this are… complex: if the data-source implements IListSource, GetList() is evaluated and used as the data-source (continue at 2) if the data-source implements ITypedList, GetProperties() is used to obtain metadata (exit) if a typed (non-object) indexer can be found (i.e. public T this[int … Read more