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

Autosize the last column in a ListView control using WndProc

Rate me:
Please Sign up or sign in to vote.
4.59/5 (30 votes)
24 Nov 20023 min read 312.2K   67   58
Shows a quick and dirty way to auto-size the last column of a ListView control.

Sample Image - ListViewAutoSize.jpg

Introduction

It has always been a pet-peeve of mine, that I prefer grid or list controls to auto size their columns to fit the control canvas. Some of you may remember the early OCX and ActiveX controls that implemented auto-size last column properties to resolve this problem. Essentially, the last column in the grid or list view is automatically expanded to take up any available space. As the form is resized, or column widths are resized by the user at runtime, the last column size is automatically increased or decreased to keep the column aligned with the control right edge.

I love the Windows Explorer look, and I love the ListView control features and appearance - we just have to do something with that last column! Having scoured the internet trying to find examples or clues, the end result that, finding a solution proved to be difficult, but implementing the solution was actually very simple.

Setting the Column Size

In fact, the ListView class does provide a ColumnHeader.Width property. The MSDN documentation describes two special values related to auto-sizing the column, as follows: "To adjust the width of the longest item in the column, set the

C#
Width
property to -1. To auto size to the width of the column heading, set the Width property to -2".

A special feature of setting the Width to -2, is that it ALSO automatically expands the last column to the right-edge of the control. This would seem to solve the problem, except that it does it a one-time auto-size that is not preserved if the user resizes any of the column widths at runtime, or the ListView control is set to resize with the form.

Responding to Change

When I first approached this problem, I figured the answer would lie in responding to some event when the user resized a column or the control was resized, or sub-classing the ListView to gain access to some protected interfaces. In fact, the ColumnHeaderCollection and ColumnHeader classes used to provide the implementation of the ListView.Columns member are completely buried inside the parent control.

My next approach was to look to the Win32 API, but faced the same obstacles. I could find no examples of how to access the ListView column headers directly.

The final step to any tricky problem like this was to look to the Window message loop. A handy feature of .NET controls is they expose the WndProc method for handling messages received by the control. By analyzing the messages that were pumped through the ListView control while columns widths were resized, or the control was resized, I discovered that the hidden ColumnHeader class sends a WM_PAINT message to the parent control to notify it during a column resize, and as a final step when the user finishes resizing the column. The WM_PAINT method is also the last message processed when the user resizes the ListView control.

The Solution

To implement the the auto-size of the last column, subclass the ListView control, and override the WndProc method.

C#
protected override void WndProc( ref Message message )
{
    const int WM_PAINT = 0xf ;

    // if the control is in details view mode and columns
    // have been added, then intercept the WM_PAINT message
    // and reset the last column width to fill the list view
    switch ( message.Msg )
    {
    case WM_PAINT:
        if ( this.View == View.Details && this.Columns.Count > 0 )
            this.Columns[this.Columns.Count - 1].Width = -2 ;
        break ;
    }

    // pass messages on to the base control for processing
    base.WndProc( ref message ) ;
}

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
Chris Beckett has been contributing to the analysis, design and development of distributed enterprise-level business systems for more than 16 years, with more than 10 years in a technical leadership role. He has delivered systems in the government, banking, broadcasting, entertainment, manufacturing, and finance industries.

Chris Beckett continues to be an active .NET architect, designer and developer, and a strong advocate for best practices in Quality Assurance and Lifecycle Management.

Comments and Discussions

 
GeneralSetting a minimum column Width Pin
Abhijeet Patel3-Mar-05 7:14
Abhijeet Patel3-Mar-05 7:14 
GeneralRe: Setting a minimum column Width Pin
ANIL KUMAR SHARMA (INDIA)25-May-06 21:51
ANIL KUMAR SHARMA (INDIA)25-May-06 21:51 
AnswerRe: Setting a minimum column Width Pin
Michelangelo_PM26-Jun-09 5:10
Michelangelo_PM26-Jun-09 5:10 
GeneralWhile reducing size, an unnecessary vertical scrollbar appears Pin
Quatschkopp20-Feb-05 6:35
Quatschkopp20-Feb-05 6:35 
GeneralRe: While reducing size, an unnecessary vertical scrollbar appears Pin
Jerome.D25-Dec-05 0:53
Jerome.D25-Dec-05 0:53 
GeneralAllowColumnReorder Pin
zilch23-Jun-04 16:20
zilch23-Jun-04 16:20 
GeneralNice and simple Pin
Member 51695425-Mar-04 17:49
Member 51695425-Mar-04 17:49 
GeneralRe: A one line solution Pin
Chris Beckett3-Mar-04 5:09
Chris Beckett3-Mar-04 5:09 
If you actually read the article, this is in fact what I am doing, however this only does a one-time resize at a moment in time. If the user resizes a column or the listview autosizes with a chanage in form size, the right-column will no longer be sized correctly. This is where the problem lies - no event in raised when this happens to tell you to resize the column headers again, which is why I am using WndProc to intercept a message from the windows loop.
GeneralLayout event and MouseMove event Pin
Anonymous11-Aug-05 11:04
Anonymous11-Aug-05 11:04 
QuestionHow do you make two seperate listviews sync when one is scrolled? Pin
FocusedWolf9-Jan-04 10:53
FocusedWolf9-Jan-04 10:53 
GeneralProblem when change column order !!! Pin
spikenguyen10-Dec-03 13:13
spikenguyen10-Dec-03 13:13 
GeneralRe: WM_SIZE and WM_NOTIFY instead of WM_PAINT Pin
Anonymous24-Nov-03 22:55
Anonymous24-Nov-03 22:55 
GeneralNICE !!! Pin
Simon Segal28-May-03 15:20
Simon Segal28-May-03 15:20 
GeneralLabelEdit No Longer Works! Pin
glancep1-Jan-03 16:45
glancep1-Jan-03 16:45 
GeneralRe: LabelEdit No Longer Works! Pin
Michael Coyle8-May-08 20:16
Michael Coyle8-May-08 20:16 
GeneralCool Pin
Christian Graus25-Nov-02 12:17
protectorChristian Graus25-Nov-02 12:17 
GeneralOops...not very efficient Pin
Chris Beckett25-Nov-02 7:14
Chris Beckett25-Nov-02 7:14 
GeneralRe: Oops...not very efficient Pin
Chris Beckett25-Nov-02 7:20
Chris Beckett25-Nov-02 7:20 
GeneralRe: Oops...not very efficient Pin
Christian Graus25-Nov-02 12:18
protectorChristian Graus25-Nov-02 12:18 
GeneralRe: Oops...not very efficient Pin
Chris Beckett25-Nov-02 14:17
Chris Beckett25-Nov-02 14:17 
GeneralRe: Oops...not very efficient Pin
Christian Graus25-Nov-02 14:46
protectorChristian Graus25-Nov-02 14:46 
GeneralLVSCW_AUTOSIZE_USEHEADER Pin
Rashid Thadha24-Nov-02 22:22
Rashid Thadha24-Nov-02 22:22 
GeneralRe: LVSCW_AUTOSIZE_USEHEADER Pin
Stephane Rodriguez.25-Nov-02 4:37
Stephane Rodriguez.25-Nov-02 4:37 
GeneralRe: LVSCW_AUTOSIZE_USEHEADER Pin
NormDroid25-Nov-02 5:47
professionalNormDroid25-Nov-02 5:47 
GeneralRe: LVSCW_AUTOSIZE_USEHEADER Pin
Chris Beckett25-Nov-02 7:01
Chris Beckett25-Nov-02 7:01 

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.