Clean Solution without reflection is:
public class DataGridViewDoubleBuffered : DataGridView
{
public DataGridViewDoubleBuffered()
{
DoubleBuffered = true;
}
}
Then go to myForm.designer.cs and change a type from DataGridView to DataGridViewDoubleBuffered .