Is it possible to filter the contents of a Listbox in a Windows Forms application?
The DataSource of my ListBox is a BindingSource containing a bunch of DTOs in an:
IList<DisplayDTO>
I want to filter on the DTO property that is specified in the ListBox's DisplayMember.
The text to be filtered on is provided in a separate Text Box.