Just a simple question. I found how to speed up datagridview
by enabling Double buffering
hided feature.
Is it fine if i place that code into Form's load event
when datagridview
is located?
typeof(DataGridView).InvokeMember(
"DoubleBuffered",
BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.SetProperty,
null,
grid,
new object[] { true });