public class CustomDG : DataGridView
{
public CustomDG()
{
this.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true);
this.UpdateStyles();
}
}
This, however, doesn't solve it. Any help would be greatly appreciated.

Comment