Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#
Tip/Trick

Double Buffering a DataGridview

Rate me:
Please Sign up or sign in to vote.
4.97/5 (14 votes)
23 Oct 2013CPOL 59.4K   11   5
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)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Sławomir Adamski3-Oct-19 8:39
Sławomir Adamski3-Oct-19 8:39 
SuggestionOne suggestion... Pin
Daniel Leykauf17-Mar-14 7:11
Daniel Leykauf17-Mar-14 7:11 
GeneralRe: One suggestion... Pin
Simon_Whale17-Mar-14 7:14
Simon_Whale17-Mar-14 7:14 
GeneralMy vote of 5 Pin
francovaro22-Jan-14 4:59
francovaro22-Jan-14 4:59 
GeneralRe: My vote of 5 Pin
Simon_Whale22-Jan-14 5:04
Simon_Whale22-Jan-14 5:04 

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.