I have a collection which I wish to use as a databinding source. Therefore in the collection I have:
VB Code:
Public Class MyTypedCollection Inherits Collections.DictionaryBase Implements ITypedList End Class
But ITypedList has two required functions and I really don't understand the documentation...what should go in:
VB Code:
Function GetListName(ByVal listAccessors() As PropertyDescriptor) As String Implements ITypedList.GetListName '\\ what goes here? End Function Function GetItemProperties(ByVal listAccessors() As PropertyDescriptor) As PropertyDescriptorCollection Implements ITypedList.GetItemProperties '\\ What goes here as well? End Function


Reply With Quote