Why does the DoubleBuffered property default to false on a DataGridView and why is it protected?

后端 未结 4 417
失恋的感觉
失恋的感觉 2020-12-31 04:46

We had a performance issue with DataGridViews where the redraw was horridly slow and found the solution Here to create a derived type and enable double buffering on the cont

4条回答
  •  旧巷少年郎
    2020-12-31 05:25

    Inheritance is not needed to turn on doublebuffering on a datagridview. You can do it with reflection on an existing datagridview.

提交回复
热议问题