Click here to Skip to main content
Click here to Skip to main content

Autosize the last column in a ListView control using WndProc

By , 24 Nov 2002
 

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 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.

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

About the Author

Chris Beckett
Web Developer
United States United States
Member
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.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 3memberZasky19 Jan '12 - 1:20 
GeneralNicely done - can use a NativeWindow to avoid subclassing the ListViewmemberSBendBuckeye13 Jan '10 - 14:49 
Generalproblem when columns reorderedmemberzobis30 Nov '09 - 7:48 
QuestionHow can I Align to Right?memberserhhio23 Jun '09 - 23:21 
QuestionNice concept!can i use it in VC++?member"_$h@nky_"8 Oct '08 - 2:39 
Generalwork-around having just 1 columnmemberesskar30 Jan '08 - 6:09 
GeneralGreat SolutionmemberRakesh B Singh3 Jun '07 - 23:06 
GeneralUse the ClientSize property to get the internal widthmemberTodd Beaulieu17 May '07 - 4:30 
GeneralSimplest & effective AlternativememberAshutosh Bhawasinka29 Apr '07 - 17:00 
QuestionRe: Simplest & effective Alternativememberhullihulli17 Apr '09 - 11:16 
GeneralRe: Simplest & effective Alternativememberserhhio23 Jun '09 - 23:19 
GeneralRe: Simplest & effective AlternativememberZasky19 Jan '12 - 1:36 
GeneralUnhandled exception in the designer and has been disabledmemberpuyopuy22 Apr '07 - 20:36 
GeneralRe: Unhandled exception in the designer and has been disabledmemberAshutosh Bhawasinka29 Apr '07 - 17:03 
GeneralBetter way:2 lines solutionmemberdfer31 Jan '07 - 6:12 
GeneralRe: Better way:2 lines solutionmemberflyingxu3 Jun '09 - 15:27 
GeneralRe: Better way:2 lines solutionmemberRotted Frog20 Jun '09 - 22:25 
GeneralRe: Better way:2 lines solutionmemberserhhio23 Jun '09 - 23:23 
GeneralVery Nicemembernatrajdev5 Nov '06 - 20:21 
GeneralVery Nicemembernatrajdev5 Nov '06 - 20:21 
GeneralWM_ERASEBKGNDmembercmaissan7 Jun '06 - 14:04 
Generalother constantssusssamuraj19 Oct '05 - 5:53 
GeneralRe: other constantsmemberMadHatter ¢8 Aug '06 - 6:59 
Generalsubclassing not necessarymemberghost12079 Jun '05 - 2:44 
GeneralRe: subclassing not necessarymemberVBProEd1 Jul '05 - 10:34 
GeneralRe: subclassing not necessarysussAnonymous11 Aug '05 - 11:06 
GeneralRe: subclassing not necessarymemberGrenticha25 Dec '05 - 0:55 
GeneralSetting a minimum column WidthmemberAbhijeet Patel3 Mar '05 - 7:14 
GeneralRe: Setting a minimum column WidthmemberANIL KUMAR SHARMA (INDIA)25 May '06 - 21:51 
AnswerRe: Setting a minimum column WidthmemberMichelangelo_PM26 Jun '09 - 5:10 
GeneralWhile reducing size, an unnecessary vertical scrollbar appearsmemberQuatschkopp20 Feb '05 - 6:35 
GeneralRe: While reducing size, an unnecessary vertical scrollbar appearsmemberGrenticha25 Dec '05 - 0:53 
GeneralAllowColumnReordermemberzilch23 Jun '04 - 16:20 
GeneralNice and simplememberPingIT25 Mar '04 - 17:49 
GeneralRe: A one line solutionmemberChris Beckett3 Mar '04 - 5:09 
GeneralLayout event and MouseMove eventsussAnonymous11 Aug '05 - 11:04 
QuestionHow do you make two seperate listviews sync when one is scrolled?memberFocusedWolf9 Jan '04 - 10:53 
GeneralProblem when change column order !!!sussspikenguyen10 Dec '03 - 13:13 
GeneralRe: WM_SIZE and WM_NOTIFY instead of WM_PAINTsussAnonymous24 Nov '03 - 22:55 
GeneralNICE !!!memberSimon Segal28 May '03 - 15:20 
GeneralLabelEdit No Longer Works!sussglancep1 Jan '03 - 16:45 
GeneralRe: LabelEdit No Longer Works!memberMichael Coyle8 May '08 - 20:16 
GeneralCoolmemberChristian Graus25 Nov '02 - 12:17 
GeneralOops...not very efficientmemberSatch25 Nov '02 - 7:14 
GeneralRe: Oops...not very efficientmemberSatch25 Nov '02 - 7:20 
GeneralRe: Oops...not very efficientmemberChristian Graus25 Nov '02 - 12:18 
GeneralRe: Oops...not very efficientsussSatch25 Nov '02 - 14:17 
GeneralRe: Oops...not very efficientmemberChristian Graus25 Nov '02 - 14:46 
GeneralLVSCW_AUTOSIZE_USEHEADERmemberRashid Thadha24 Nov '02 - 22:22 
GeneralRe: LVSCW_AUTOSIZE_USEHEADERmember.S.Rod.25 Nov '02 - 4:37 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 25 Nov 2002
Article Copyright 2002 by Chris Beckett
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid