Skip to content

Sort, filter and aggregate lists of business objects without all the boring code! This library provides a powerful "view" approach to data binding .NET objects to user interface controls.

xuan2261/BindingListView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BindingListView

2006 Andrew Davies created an excellent little class on SourceForge called BindingListView<T> which essentially allows you to bind a collection to a DataGridView while supporting sorting and filtering. Binding a DataGridView to a normal List<T> does not support sorting and filtering, as the proper interfaces are not implemented by List<T>.

The class works great. However, it would have been awesome if one could iterate through the collection using LINQ. This fork updates BindingListView to .NET 4.0 and enables LINQ functionality based on an answer from Rick Sladkey on Stack Overflow.

Build status NuGet version

Introduction

IMAGE ALT TEXT

The BindingListView .NET library provides a type-safe, sortable, filterable, data-bindable view of one or more lists of objects. It is the business objects equivalent of using a DataView on a DataTable in ADO.NET. If you have a list of objects to display on a Windows Forms UI (e.g. in a DataGridView) and want to allow your user to sort and filter, then this is the library to use!

For a demo of what the library can do, watch the screen cast.

The source contains a few example projects demonstrating what the library can do. Check out the SourceForge project page for forums, help, etc.

The library makes use of generics and so only works with the .NET 4.0 runtime. It should work with any .NET language: C#, VB.NET, etc.

Quick-start Guide

Add a reference to the Equin.ApplicationFramework.BindingListView.dll assembly. (You can download the binary or compile from source.) The classes you'll want exist in the Equin.ApplicationFramework namespace.

Here is a very simple example of creating a view of a list of objects (in C#):

List<Customer> customers = GetCustomers();
BindingListView<Customer> view = new BindingListView<Customer>(customers);
dataGridView1.DataSource = view;

The bolded line creates a new view and passes the customers list as the "source" list. The view is then data bound to a DataGridView control. In the grid you can now sort by clicking on the headers. This was not possible if we had bound directly to the list object instead.

You can programatically sort the view using the ApplySort method. There are a number of overloads, the simplist of which takes a string in the form of an SQL "order by" clause. For example, view.ApplySort("Balance DESC, Surname") would first sort by the Balance property (putting the highest first) and then sort by Surname (is normal ascending order). You can specify zero or more properties to sort by. With each property you can enter "DESC" to sort in descending order.

The restrict the items displayed by the view you can set a filter. A simple filter is a function that takes an object and returns true or false depending on if the object should appear in the view. More advanced filters can be created by creating a class that implements the IItemFilter interface. This example shows creating a filter using an anonymous method in C#.

view.ApplyFilter(delegate(Customer customer) { return customer.Balance > 1000; });

In VB.NET you will have to explicitly create the function.

view.ApplyFilter(AddressOf BalanceFilter)
...
Function BalanceFilter(ByVal customer as Customer) as Boolean
  Return customer.Balance > 1000
End Function

A filter will not actually remove items from the source list, they are just not visible when bound to a grid for example.

Enabling LINQ for BindingListView

You can use LINQ directly on a BindingListView<T> instance like this:

// Create a view of the items
itemsView = new BindingListView<Item>(feed.Items);
var descriptions = itemsView.Select(t => t.Description);

An Important Detail

The BindingListView works by creating a wrapper object around each item in a source list. This is just like how a DataView contains DataRowViews, which wrap DataRow objects, in ADO.NET. The wrapper object in a BindingListView is of type ObjectView<T>. The only time you usually need to interact with an object view is when retrieving items from the view in code.

ObjectView<Customer> customerView = view[0]; // Get first item in view
Customer customer = customerView.Object;

The example above uses the Object property of the ObjectView to return the original object. This important detail impacts the most often when you are using a BindingSource component on a Form, as outlined in this following example.

// Upon a customer being selected (in a grid or listbox for example)
// we want to do something with that object.
private void customersBindingSource_PositionChanged(object sender, EventArgs e)
{
  // This cast will fail at runtime.
  Customer customer = (Customer)customersBindingSource.Current
  // The correct code is this
  Customer customer = ((ObjectView<Customer>)customersBindingSource.Current).Object
}

BindingSource.Current is typed as just Object, so the invalid cast to Customer cannot be caught at compile time. This causes a runtime cast exception instead.

Copyright © Andrew Davey 2006

About

Sort, filter and aggregate lists of business objects without all the boring code! This library provides a powerful "view" approach to data binding .NET objects to user interface controls.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 74.6%
  • Visual Basic .NET 19.7%
  • PowerShell 4.1%
  • Shell 1.6%