当前位置:首页 >.NET > 正文内容

C#中使用ListView动态添加数据不闪烁

大滑稽11年前 (2014-03-24).NET1037

手头正在做一个通讯网关,选用了C#的WINFORM作界面

用了一个ListView来实时的显示数据传输情况,于是问题就来了,当数据量比较大,而且处理速度很快时,这该死的界面闪得人眼花...

废话不多说,直接上代码: 

首先,自定义一个类ListViewNF,继承自 System.Windows.Forms.ListView

(NF=Never/No Flickering)

class ListViewNF : System.Windows.Forms.ListView    {                       public ListViewNF()        {                        
           // 开启双缓冲
          
           
           this
.SetStyle(ControlStyles.OptimizedDoubleBuffer

                                   | ControlStyles.AllPaintingInWmPaint, true);                        
           // Enable the OnNotifyMessage event so we get a chance to filter out            // Windows messages before they get to the form's WndProc
           
           
           this
.SetStyle(ControlStyles.EnableNotifyMessage, true);        }  

     

       protected override void OnNotifyMessage(Message m)        {            

           //Filter out the WM_ERASEBKGND message            

           if (m.Msg != 0x14)            {                

               base.OnNotifyMessage(m);            }        }    }


然后,修改我们的Form代码中定义ListView的位置,将原来的

System.Windows.Forms.ListView listView1;

修改为

ListViewNF listView1;

ok,然后随便怎么insert\add这个listView1,都不会有半点的闪烁了,

扫描二维码推送至手机访问。

版权声明:本文由第★一★次发布,如需转载请注明出处。

本文链接:https://wpers.net/post/40.html

“C#中使用ListView动态添加数据不闪烁” 的相关文章

修改注册表限制软件使用次数

 private void Form1_Load(object sender, System.EventArgs e){RegistryKey RootKey,RegKey; //项名为:HKEY_CURRENT_USER\So...

c#中分页显示数据

     //c#中分页显示数据    public partial class Form1 : Form    {  ...

C#获得程序集

 //获得程序集System.Reflection.Assembly assem = System.Reflection.Assembly.GetExecutingAssembly();...

获取Color的几种方式

//获取Color的几种方式Color.FromKnownColor(KnownColor.ControlLight);Color.FromArgb(int r,int g,int b);Color.FromArgb(int a,int r...

以ToolStrip为例绘制简便背景

//以ToolStrip为例绘制简便背景e.Graphics.FillRectangle(new System.Drawing.Drawing2D.LinearGradientBrush(new System.Drawing.Point(...

c#各种Timer类的区别与使用

System.Threading.Timer 是一个简单的轻量计时器,它使用回调方法并由线程池线程提供服务。在必须更新用户界面的情况下,建议不要使用该计时器,因为它的回调不在用户界面线程上发生。在此类情况下,System.Windows....