Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

Double Buffering a DataGridview

4.97/5 (14 votes)
23 Oct 2013CPOL 61.5K  
Two ways to double buffer a DataGridView

Introduction

Recently, I had a Winforms projects that required me to display data approximately 1000 rows to a DataGridView control. Once added, some logic was applied to each row to determine the color of the row. There was no problem until the user began scrolling through the information. It caused the rows to flicker.

Using the Code

As the DoubleBuffered property of the DataGridView control is hidden, you have to either create a custom class so that you can set the property.

C#
public partial class myDataGridView : DataGridView
{
    public myDataGridView()
    {
        InitializeComponent();
        DoubleBuffered = true;
    }    
}

Or you could invoke the property using the following code snippet below where DataGridViewControlName is the name of your DataGridView control that you are using in your code.

C#
//Set Double buffering on the Grid using reflection and the bindingflags enum.
typeof(DataGridView).InvokeMember("DoubleBuffered", BindingFlags.NonPublic | 
BindingFlags.Instance | BindingFlags.SetProperty, null, 
DataGridViewControlName, new object[] { true });

History

  • Original version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)