sharing about .NET and technology RSS 2.0
 Monday, April 24, 2006

BindingListView<T> is a project hosted on GotDotNet that gives you search, sorting and filtering capabilities to a plain BindingList. For example if you have the following Person entity:

public class Person
{
    string firstName = string
.Empty;
    int age = 0;

    public string FirstName
    {
       
get { return firstName; }
        set { firstName = value; }
    }

    public int Age
    {
       
get { return age; }
       
set { age = value; }
   
}

    public Person(string firstName, int age)
   
{
       
this.firstName = firstName;
       
this.age = age;
   
}
}

And you want to have a collection of persons bind to a datagrid, you can simply write the following:

BindingList<Person> persons = new BindingList<Person>();
persons.Add(
new Person("Bill", 45));
persons.Add(
new Person("Gert", 33));
persons.Add(
new Person("Johan", 12));
persons.Add(
new Person("An", 27));

personsGrid.DataSource = persons;

What if you need to do some filtering, or simply sorting on the datagrid? Therefore you would need to create a custom collection class that implements a bunch of interfaces for having sorting, filtering and searching capabilities.

The BindingListView<T> class has all these functionalities built-in. You simply have to pass a list, and bind the BindingListView to the datagrid. The same way you would do with a DataSet and DataView. This means:

BindingListView<Person> personsView = new BindingListView<Person>(persons);
personsGrid.DataSource = personsView;

Sorting on a BindingListView is done through the Sort property, the same as on a DataView. For example:

personsView.Sort = "FirstName";

Filtering is done through the Filter property and uses anonymous delegates. So for example to filter all persons that are less than 30, you can write:

personsView.Filter = BindingListView<Person>.CreateItemFilter(new Predicate<Person>(
    delegate(Person
person)
    {
       
return
(person.Age < 30);
    }
));

You can also merge multiple sources to one view (functionality that the DataView doesn't support) through the AggregatedBindingListView<T>.

Monday, April 24, 2006 11:42:21 PM (Romance Standard Time, UTC+01:00)  #    Comments [0] -

Tracked by:
http://www.realdn.net/msblog/PermaLink,guid,3f4c4788-7e9c-4616-8758-de8751813bf5... [Pingback]
"zyban side affects" (zyban side affects) [Trackback]
"www.best-vaporizers.com" (www.best-vaporizers.com) [Trackback]
"www.jntah.com" (www.jntah.com) [Trackback]
"downlineincome.com" (downlineincome.com) [Trackback]
"www.pokerplayersusa.com" (www.pokerplayersusa.com) [Trackback]
"www.mommyco.com" (www.mommyco.com) [Trackback]
"www.cannabisvaporizers.com" (www.cannabisvaporizers.com) [Trackback]
"www.delarou.net" (www.delarou.net) [Trackback]
"phenterminedietpill.fugocm.pila.pl" (phenterminedietpill.fugocm.pila.pl) [Trackback]
"www.feminizedmarijuanaseeds.com" (www.feminizedmarijuanaseeds.com) [Trackback]
"www.bewbs.com" (www.bewbs.com) [Trackback]
"www.impact210.com" (www.impact210.com) [Trackback]
"www.thecodingmaster.com" (www.thecodingmaster.com) [Trackback]
"hackgs.com" (hackgs.com) [Trackback]
"www.neptunesbeachclub.com" (www.neptunesbeachclub.com) [Trackback]
"www.conferencecalldirectory.net" (www.conferencecalldirectory.net) [Trackback]
"www.ringtone-center.com" (www.ringtone-center.com) [Trackback]
"www.herbalmarijuanavaporizer.com" (www.herbalmarijuanavaporizer.com) [Trackback]
"www.marijuanavaporizers.net" (www.marijuanavaporizers.net) [Trackback]
"www.herbvaporizers.com" (www.herbvaporizers.com) [Trackback]
"www.marijuanavapor.com" (www.marijuanavapor.com) [Trackback]
"www.vaporizerpipes.com" (www.vaporizerpipes.com) [Trackback]
"phentermine diet pill" (phentermine diet pill) [Trackback]
"Funny Quotes" (Funny Quotes) [Trackback]
"pc memory upgrade" (pc memory upgrade) [Trackback]
"popcorn recipe ebook" (popcorn recipe ebook) [Trackback]
"generic cialis next day" (generic cialis next day) [Trackback]
"ital" (ital) [Trackback]
"foto scolaretta sex sex" (foto scolaretta sex sex) [Trackback]
"child custody" (child custody) [Trackback]
"crochet pillow edgings" (crochet pillow edgings) [Trackback]
"prom dresses" (prom dresses) [Trackback]
"invisibile ragazze inculate" (invisibile ragazze inculate) [Trackback]
"piu caldo fuoriclasse papa" (piu caldo fuoriclasse papa) [Trackback]
"museo santa giulia brescia" (museo santa giulia brescia) [Trackback]
"rubber stamping sites" (rubber stamping sites) [Trackback]
"dirty disney toons" (dirty disney toons) [Trackback]
"nokia 1110" (nokia 1110) [Trackback]
"Antivirus Software Reviews" (Antivirus Software Reviews) [Trackback]
"construction project checklist" (construction project checklist) [Trackback]
"chicago gay dating" (chicago gay dating) [Trackback]
"car seat covers dog" (car seat covers dog) [Trackback]
"cinema roma" (cinema roma) [Trackback]
"what is my computer hz" (what is my computer hz) [Trackback]
"babel" (babel) [Trackback]
"owner builder homes" (owner builder homes) [Trackback]
"SEIKO KINETIC SKH640" (SEIKO KINETIC SKH640) [Trackback]
"babysitter wanted fairbanks alaska" (babysitter wanted fairbanks alaska) [Trackback]
"foto spogliatoio" (foto spogliatoio) [Trackback]
"lilith" (lilith) [Trackback]
"si te vas mp3" (si te vas mp3) [Trackback]
"girls ugly" (girls ugly) [Trackback]
Name
E-mail
Home page

Comment (HTML not allowed)  

Enter the code shown (prevents robots):

Navigation
Archive
<November 2008>
SunMonTueWedThuFriSat
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008
Christoph De Baene
Sign In
Statistics
Total Posts: 151
This Year: 22
This Month: 1
This Week: 0
Comments: 147
All Content © 2008, Christoph De Baene
DasBlog theme 'Business' created by Christoph De Baene (delarou)