Click here to Skip to main content
15,867,771 members
Articles / Desktop Programming / Windows Forms
Tip/Trick

DataGridViewGrouper

Rate me:
Please Sign up or sign in to vote.
4.95/5 (30 votes)
28 May 2015CPOL3 min read 136.4K   12.1K   39   60
DataGridViewGrouper: add grouping functionality to the .NET DataGridView

Introduction

The DataGridViewGrouper is a component that can add grouping functionality to any existing DataGridView. The component can be added in the designer or in code. Optionally, a control can be used (DataGridViewGrouperControl) to provide a user interface to alter the grouping.

Background

The component was something I wrote in 2008 and published on blogs.vbcity.com/hotdog/archive/2008/12/19/9225.aspx (no longer available). That was a primary version and although it hasn't been updated in a long time now, the component and its controls are something that I use every day in custom applications and contains a lot of functionality the old version did not.

Using the Code

To simply start grouping, the component can be added in designer, or on the fly. Grouping can be started with one of the appropriate functions, or by attaching a custom grouper.

All the code needed to make a grid grouped on a property (in this example called AString):

C#
var grouper = new Subro.Controls.DataGridViewGrouper(dataGridView1);
grouper.SetGroupOn("AString");

which creates something like:

Image 1

N.B.: The test project generates random data, so the displayed data will vary.

The miscellaneous options for formatting/sorting/collapsing/etc. can be set either in code, or with the included wrapper control:

Image 2

The dropdown contains the columns from whatever source the grid is bound to:

Image 3

And the various options can be set via the secondary options button:

Image 4

The options can of course be set in code, but also with the help of an included toolstripmenuitem which can be added to a contextmenu or other menu.

In the example, a string was used, but the same can be accomplished by using a PropertyDescriptor/DataGridViewColumn or lambda expression. For example, these do the same as using the string:

C#
grouper.SetGroupOn<TestData>(t => t.AString);
grouper.SetGroupOn(this.dataGridView1.Columns["AString"]);

Also, a custom grouper can be assigned to the GroupOn property (any class inheriting GroupingInfo. This could be changed to an interface later on if needed.

Or by using the SetCustomGroup method:

C#
grouper.SetCustomGroup<TestData>(t => t.AnInt % 10, "Mod 10");

Image 5

Some further examples:

C#
//to start with all rows collapsed on a (re)load or 
//when the group is changed you can set the option startcollapsed:
grouper.Options.StartCollapsed = true;

//to collapse all loaded rows: (the difference with setting the option above, 
//is that after choosing a new grouping (or on a reload), the new groups would expand.
grouper.CollapseAll();

//if you don't want the (rowcount) to be shown in the headers:
grouper.Options.ShowCount = false;

//if you don't want the grouped column name to be repeated in the headers:
grouper.Options.ShowGroupName = false;

//default sort order for the groups is ascending, 
//you can change that in the options as well (ascending, descending or none)
grouper.Options.GroupSortOrder = SortOrder.Descending;

An example of collapse all:

Image 6

The component exposes a GroupingChanged event to catch when the grouping was changed or removed. And a DisplayGroup event which is fired whenever one of the grouping rows is being painted. The DisplayGroup event can be used to further customize whatever has to be shown:

C#
//grouper.DisplayGroup += grouper_DisplayGroup;
          
void grouper_DisplayGroup(object sender, GroupDisplayEventArgs e)
{
    e.BackColor = (e.Group.GroupIndex % 2) == 0 ? Color.Orange : Color.LightBlue;
    e.Header = "[" + e.Header + "], grp: " + e.Group.GroupIndex;
    e.DisplayValue = "Value is " + e.DisplayValue;
    e.Summary = "contains " + e.Group.Count + " rows";
}

The snippet above would produce something like:

Image 7

Points of Interest

The class library is an extract from a larger control library. One of the things still missing here is a quick grouping context menu item, which sets the grouping on the column where the right click took place and is the way grouping is used most in the applications I've used so far. However, the context menu is a bit too integrated in the library and its custom ORM to quickly add here. If interest exists, I will add that later on, including its quick filter options.

Another note: The library also contains some searchboxes (for DataGridView/Treeview and bindingsource in general. Not documented here, but fully usable. Just drop onto a form and attach the appropriate control.

History

  • 2008: First draft on vbcity blog
  • 2015-05-28 First publish of current production version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Netherlands Netherlands
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: InvalidCastException Pin
ricpulvi2-Sep-15 23:27
ricpulvi2-Sep-15 23:27 
GeneralRe: InvalidCastException Pin
Robert.Verpalen3-Sep-15 8:33
Robert.Verpalen3-Sep-15 8:33 
GeneralRe: InvalidCastException Pin
ricpulvi3-Sep-15 21:15
ricpulvi3-Sep-15 21:15 
QuestionGrid Row/Text Color Pin
ricpulvi2-Sep-15 2:43
ricpulvi2-Sep-15 2:43 
AnswerRe: Grid Row/Text Color Pin
Robert.Verpalen2-Sep-15 5:04
Robert.Verpalen2-Sep-15 5:04 
GeneralRe: Grid Row/Text Color Pin
ricpulvi2-Sep-15 5:08
ricpulvi2-Sep-15 5:08 
QuestionSystem.NullReferenceException Pin
Member 43148591-Sep-15 23:30
Member 43148591-Sep-15 23:30 
AnswerRe: System.NullReferenceException Pin
Robert.Verpalen2-Sep-15 5:05
Robert.Verpalen2-Sep-15 5:05 
Thank you for your feedback Smile | :) I will try to look into it ASAP, but that might not be before the weekend I'm afraid.
QuestionCorrect Row number Pin
javon2713-Jul-15 5:24
professionaljavon2713-Jul-15 5:24 
AnswerRe: Correct Row number Pin
javon2713-Jul-15 5:30
professionaljavon2713-Jul-15 5:30 
GeneralRe: Correct Row number Pin
Robert.Verpalen16-Jul-15 21:32
Robert.Verpalen16-Jul-15 21:32 
QuestionWorks in C#.NET only, not working on VB.NET Pin
Member 1152198226-Jun-15 3:48
Member 1152198226-Jun-15 3:48 
AnswerRe: Works in C#.NET only, not working on VB.NET Pin
Robert.Verpalen7-Jul-15 0:13
Robert.Verpalen7-Jul-15 0:13 
QuestionHow to include in my project Pin
Member 1071427411-Jun-15 16:23
Member 1071427411-Jun-15 16:23 
AnswerRe: How to include in my project Pin
Robert.Verpalen7-Jul-15 0:16
Robert.Verpalen7-Jul-15 0:16 
GeneralThanks! Pin
5ke29-May-15 3:49
5ke29-May-15 3:49 
GeneralRe: Thanks! Pin
Robert.Verpalen7-Jul-15 0:14
Robert.Verpalen7-Jul-15 0:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.