DataGridView Column Width Grow Only SizingA 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
Private Sub DataResults_Scroll(ByVal sender As Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles DataResults.Scroll
Posted 20 Jun '10 2:38 AM
daveauld15.5K
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
| ||||||||||||||||||||||