Public Class MySortedBindingList(Of TList As Generic.IList(Of TItem), TItem)This gave me access to the source list, which is useful for getting at it's properties. Now I'm trying to do the same with the FilteredBindingList. However, unlike the SortedBindingList, in which I can declare a property exposing the original list, I cannot seem to set a property and expose the filtered version of the list.
Inherits SortedBindingList(Of TItem)
Private mSource As TList = Nothing
Public Sub New(ByVal list As TList)
MyBase.New(list)
Me.mSource = list
End Sub
Public ReadOnly Property List() As TList
Get
Return Me.mSource
End Get
End Property
Copyright (c) Marimer LLC