Click here to Skip to main content
6,633,937 members and growing! (25,152 online)
Email Password   helpLost your password?
Desktop Development » Combo & List Boxes » General     Intermediate

Multi Column List Box in C#

By Chris Rickard

An inherited ListBox that displays each column of a DataBound ListBox
C#, Windows, .NET 1.0, Dev
Posted:2 Jun 2002
Views:359,081
Bookmarked:69 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
32 votes for this article.
Popularity: 5.94 Rating: 3.95 out of 5
3 votes, 9.7%
1
2 votes, 6.5%
2
3 votes, 9.7%
3
7 votes, 22.6%
4
16 votes, 51.6%
5

Sample Image - MultiColumnListBox.png

Introduction

When I first started with .net, I was pretty disappointed that both the ListBox and ComboBox didn't have multi-column support. More accurately the ListBox didn't implement it the way I was expecting (each Item stacks horizontally rather than vertically). I had heard Windows Forms had a rich set of Controls yet they didn't have as much functionality of Microsoft Forms 2.0 (ActiveX Library used by Office VBA). However now that I've really worked with .net and Windows Forms I'm glad the MS developers spent less time writing fancy controls and more time making it easier for other people to do so.

This is an Owner Drawn ListBox inherited from System.Windows.Forms.ListBox. Its primary function is to format each Item into multiple columns. Secondly, the client should be able to retrieve the contents of any column in any row easily. I decided the best way to do this would be to mimic the drawing of the standard DataGrid. The side effect to this is it has to be bound to a DataSource.

Features

  • Multiple Columns with configurable widths
  • Automatic calculation of HorizontalExtent based on the # of columns and their width
  • ColumnCount Property to quickly limit the # of columns without modifying the DataSource
  • 2 new Events,
    MeasureSubItem
    and
    DrawSubItem
    for client code to take ownership of Painting
  • ValueMember now corresponds to MultiColumnListBox.Value (instead of Text). Also a TextMember Property has been added that corresponds to MultiColumnListBox.Text
  • ValueIndex and TextIndex properties can be set so that Column positions can be used instead of column names
  • MatchEntryStyle enumerated property extends typed character matching for case sensitivity and complete string matching (with configurable timeout)
  • FindString() and FindStringExact() overriden to take columns into account.
  • GetItemAt() method to quickly obtain an object at a specified row and column (4 Overloads)
  • Reflection is used to determine if an object can be drawn as an Image. This includes Image Bitmap and byte[] (if it really is an image that is)
  • Included is a helper object DataArray with a single static method ToDataSet which converts a 1-3 dimension (Non-Jagged) array into a DataSet.

Usage

using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using AsYetUnnamed;

public class Form1 : System.Windows.Forms.Form
{
    private DataSet ds;
    private MultiColumnListBox listBox1;
    public Form1()
    {
        ds = DataArray.ToDataSet(new object[,]{ 
                    {"Row0, col0",  "Row0, col1" ,1},
                    {"Row00, col0", "Row1, col1" ,new object()},
                    {"Row1, col0",  "Row2, col1" ,"Some String"},
                    {"Row1a, col0", "Row3, col1" ,Rectangle.Empty},
                    {"row1aa,col0", "Row4, col1" ,1},
                    {"row0, col0",  "Row5, col1" ,1},
                    {"pow0, col0",  "Row6, col1" ,1},
                    {"Row7, col0",  "Row7, col1" ,new ExampleClass()},
                    {"Row8, col0",  "Row8, col1" ,Image.FromFile("StopLight.gif")}
                    });
            
        listBox1 = new MultiColumnListBox();
        listBox1.Parent = this;

        listBox1.DataSource = arr;            
    }
    class ExampleClass
    {
        Public override string ToString()
        {
            return "Hello from ExampleClass!!";
        }
    }

}
Will produce something similar to the above screenshot. The demo project demonstrates more features.

Challenges

Probably the biggest challenge was figuring out how Complex Databinding works on WinForms. As it turns out, anything that implements IList is enumerated to get the list of rows. The difference between ListBox and DataGrid are as follows:
ListBox: Calls oString() on each Item contained in the IList. If DisplayMember is set, it instead calls IList[index].DisplayMember.ToString()

DataSet: Instead of calling ToString() on every Item contained in the IList, it uses Reflection to find every public readable property the object exposes. It displays each one of these in a column.
However if the DataSource impliments ITypedList, it uses the property definitions supplied by ITypedList instead. When used in conjunction with an object that impliments ICustomTypeDescriptor, the ITyped list can supply non-existant properties of an object to the DataGrid.

Fortunately the DataSet, or rather DataView object implements this for you. And the DataManager already provided with ListBox has the ability to query for these Interfaces automatically.

One other annoying thing was working with SelectionMode.MultiExtended. When in this mode setting SelectedIndex on an Item that is already selected but doesn't have focus will not give focus to that Item. Also, calling ClearSelected() when in MultiExtended mode clears the Selection then Selects Item 0. I spent hours trying to figure out how to set a Mutually Exclusive Selection without forcing a repaint and without Item 0 flashing.

\\TODO:

This is definitely a work-in-progress. Aside from no designer code, lack of documentation, severe lack of code comments, and too many eaten exceptions I want to implement the following:
  • Replace ColumnWidths with ColumnStyles which in addition to width also specifies Font, Color, BackColor, maybe even a Delegate to perform single column Painting without going full-blown OwnerDraw.
  • Any thoughts on Mouse-based column Resizing? Is this exceeding the purpose of a list box?
  • RE: DataArray.ToDataSet() I would like to actually make an object that Implements ITypedList and ICustomTypeDesriptor that interprets calls to a contained Array rather than just Looping through and copying elements to a DataSet.
  • I really need to come up with a namespace....

Conclusion

Hopefully this fulfills somebody's needs besides just my own... I really appreciate any feedback, comments, suggestions, bug findings, etc.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Chris Rickard


Member

Occupation: Web Developer
Location: United States United States

Other popular Combo & List Boxes articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 30 (Total in Forum: 30) (Refresh)FirstPrevNext
GeneralMulticolumn list box for the web. PinmemberGretna3:27 22 Aug '08  
GeneralMulti column list box column header in c# Pinmember6:32 22 Feb '07  
AnswerRe: Multi column list box column header in c# PinmemberChris Rickard6:39 22 Feb '07  
GeneralDataView as the once element PinmemberKotolom0:27 28 Oct '05  
GeneralVery Nice Pinmemberdocrob111:10 1 Sep '05  
GeneralBut the example in the article...works? PinmemberAstroman10111:06 6 Jul '05  
GeneralHave a question Pinmembertaithien17:53 9 Jun '05  
Generaleasier implementation Pinmemberthopra6:43 31 Jan '05  
GeneralNice Work PinmemberGISnet6:43 27 Jan '05  
GeneralAllow empty DataSet PinmemberErik Molenaar6:39 21 Dec '04  
GeneralRe: Allow empty DataSet PinmemberAstroman1019:35 10 Jul '05  
GeneralRe: Allow empty DataSet PinmemberErik Molenaar23:37 10 Jul '05  
GeneralHow to specify which columns appear Pinmemberpatch_werk12:22 2 Sep '04  
Generalwhat about this? PinmemberM.H.YAU20:49 19 Feb '04  
GeneralRe: what about this? PinmemberChris Rickard9:13 20 Feb '04  
GeneralUsing TAB to do multi-column listbox? PinmemberJoe Chen22:00 20 Nov '03  
GeneralRe: Using TAB to do multi-column listbox? Pinmembersamir411801:33 21 Mar '05  
GeneralRe: Using TAB to do multi-column listbox? Pinmembertmn1146:29 21 Feb '07  
GeneralA much easier multi column list box... PinmemberJoe Chen21:59 20 Nov '03  
GeneralAddItem() Pinmemberstrahan15:54 18 Aug '03  
Generalredraw the scrollbars Pinmemberhientrang20020:55 18 Aug '03  
GeneralQuestion abt Datagrid and IList PinmemberSameer Khan12:21 18 Mar '03  
GeneralRe: Question abt Datagrid and IList PinsussAnonymous8:18 27 Mar '05  
GeneralRe: Question abt Datagrid and IList Pinmembervachan1:29 6 Apr '05  
GeneralHave you tried the ListView control? PinsussAnonymous13:30 15 Oct '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 2 Jun 2002
Editor: Chris Maunder
Copyright 2002 by Chris Rickard
Everything else Copyright © CodeProject, 1999-2009
Web21 | Advertise on the Code Project