Merrion
Well-known member
I have a collection which I wish to use as a databinding source. Therefore in the collection I have:
But ITypedList has two required functions and I really dont understand the documentation...what should go in:
Code:
Public Class MyTypedCollection
Inherits Collections.DictionaryBase
Implements ITypedList
End Class
But ITypedList has two required functions and I really dont understand the documentation...what should go in:
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