Merrion
Junior Contributor
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 don't understand the documentation...what should go in:
Visual Basic:
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:
Visual Basic:
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