Generic IBindingListView Implementations
Posted
by Brad Leach
on Stack Overflow
See other posts from Stack Overflow
or by Brad Leach
Published on 2008-08-26T22:32:51Z
Indexed on
2010/05/19
20:20 UTC
Read the original article
Hit count: 305
.NET
|databinding
Can anyone suggest a good implementation of a generic collection class that implements the IBindingListView & IBindingList interfaces and provides Filtering and Searching capabilities?
I see my current options as:
- Using a class that someone else has written and tested
- Inheriting from BindingList, and implementing the IBindingListView interfaces
- Write a custom collection from scratch, implementing IBindingListView and IBindingList.
Obviously, the first option is my preferred choice.
Thanking you.
© Stack Overflow or respective owner