DataGridView滚动慢的解决方法

当DataGridView控件在C#/.NET应用程序中数据量较大时,会出现滚动卡顿和闪烁的问题。启用双缓冲可以显著减少内部调用次数,降低CPU负载,提高滚动速度。通过反射设置隐藏的DoubleBuffered属性,实现DataGridView的流畅滚动。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

当DataGridView达到一定大小的时候,拖动滚动条就会非常慢,出现让人难以忍受的闪动。
即便只有100行,每行30列。
解决方法是启用DataGridView的双缓冲。

首先导入命名空间using System.Reflection;

 

原文:

Fixing a slow scrolling DataGridView

Filed in C# on Oct.25, 2009

Whenever your C#/.NET DataGridView reaches a certain size, it tends to get really slow to scroll. Depending on the speed of your computer this may be more or less noticeable. In an application i did for a client this became a real problem due to a combination of lots of DataGridView cells and fairly slow computers.
Luckily the solution turned out to be simple…

Turn on double buffering

Turning on double buffering seems to solve the problem. Normally double buffering would only help reduce flickering, since painting is being done to an off-screen buffer, but for the DataGridView it also significantly reduces the amount of functions being called internally in the DataGridView – thus reducing processor load and increasing speed. (statistics gathered with the Eqatec Tracer)

My DataGridView doesn’t have a DoubleBuffered property !?!?

For some reason Microsoft has decided to hide the DoubleBuffered property from DataGridView. Luckily you can set it anyway with reflection.

 
  1. public static class ExtensionMethods

  2. {

  3. public static void DoubleBuffered(this DataGridView dgv, bool setting)

  4. {

  5. Type dgvType = dgv.GetType();

  6. PropertyInfo pi = dgvType.GetProperty("DoubleBuffered",

  7. BindingFlags.Instance | BindingFlags.NonPublic);

  8. pi.SetValue(dgv, setting, null);

  9. }

  10. }

Just drop the above class into your project somewhere, or add the function to your existing extension methods.
The extension method allows you to set the DoubleBuffered property on your DataGridView in the following manner:

dataGridView1.DoubleBuffered(true);

You now have a smooth scrolling DataGridView :-)

 

来自:

http://h2appy.blog.51cto.com/609721/289076

http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值