Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

DataGridView Column Width Grow Only Sizing

0.00/5 (No votes)
20 Jun 2010 1  
A simple way to create a grow only Column Width routine
I was using a bound DataGridView to display a large number of records, with varying data widths in each column.

Initially, I was autosizing all the columns on data load, but with thousands of results, this was causing a lag when the data was loaded.

I then switched to autosizing only when the user scrolled the data, and on the displayed data, however this had the undersirable effect of making the columns all jump around (grow/shrink) as the user scrolled up and down the data.

I decided the best approach was a growing only column width, so as each column encountered longer data, the columns would be resized to fit the new data, but would not shrink again.

This worked great, improved the data load time, and resulted in a happy balance between visuals, usability and data load.

To achieve this, the DataGridView has Column AutoSizeColumMode set to DisplayedCells in the design environment, this caters for the first instance the data is bound to the DataGridView. Then, in the scroll event, turn this setting off as it is no longer required, and run the following snippet. DataResults is the name of my DataGridView

VB.NET
Private Sub DataResults_Scroll(ByVal sender As Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles DataResults.Scroll
    'Turn off Autosize, only used during the first data load.
    DataResults.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None

    'Get the preffered width for displayed data against each column and compare to current width
    'Set the new column width only if greater than current
    For Each column As DataGridViewColumn In DataResults.Columns
        If column.GetPreferredWidth(DataGridViewAutoSizeColumnMode.DisplayedCells, True) > column.Width Then
            column.Width = column.GetPreferredWidth(DataGridViewAutoSizeColumnMode.DisplayedCells, True)
        End If
    Next
End Sub

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