Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#
Article

Multi Column List Box in C#

Rate me:
Please Sign up or sign in to vote.
4.16/5 (34 votes)
2 Jun 20024 min read 650K   17.2K   75   33
An inherited ListBox that displays each column of a DataBound ListBox

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,
    C#
    MeasureSubItem
    and
    C#
    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

C#
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


Written By
Web Developer
United States United States
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: Question abt Datagrid and IList Pin
Anonymous27-Mar-05 7:18
Anonymous27-Mar-05 7:18 
GeneralRe: Question abt Datagrid and IList Pin
vachan6-Apr-05 0:29
vachan6-Apr-05 0:29 
QuestionHave you tried the ListView control? Pin
Anonymous15-Oct-02 12:30
Anonymous15-Oct-02 12:30 
AnswerRe: Have you tried the ListView control? Pin
David Stone15-Oct-02 13:44
sitebuilderDavid Stone15-Oct-02 13:44 
GeneralRe: Have you tried the ListView control? Pin
Anonymous6-Feb-03 21:45
Anonymous6-Feb-03 21:45 
GeneralRe: Have you tried the ListView control? Pin
MTKrishnan17-Jun-03 8:42
MTKrishnan17-Jun-03 8:42 
AnswerRe: Have you tried the ListView control? Pin
Chris Rickard16-Oct-02 3:22
Chris Rickard16-Oct-02 3:22 
GeneralRe: Have you tried the ListView control? Pin
Member 41290027-May-03 17:14
Member 41290027-May-03 17: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.