Skip to content

Instantly share code, notes, and snippets.

@MBahamondes
MBahamondes / CustomDataGridView
Created July 4, 2014 18:18
Custom class based off of DataGridView so you can enable its DoubleBuffering.
public class CustomDataGridView: DataGridView
{
public CustomDataGridView()
{
//With this instruction we enable the Double Buffer to improve the performance of DataGridView
DoubleBuffered = true;
}
}