C#:使用ListView动态添加数据一直闪烁的解决办法_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#:使用ListView动态添加数据一直闪烁的解决办法

C#:使用ListView动态添加数据一直闪烁的解决办法

 2014/7/2 17:23:25  曾是土木人  程序员俱乐部  我要评论(0)
  • 摘要:首先,自定义一个类ListViewNF,继承自System.Windows.Forms.ListViewusingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespace你的名称空间{classListViewNF:System.Windows.Forms.ListView{publicListViewNF(){//开启双缓冲this
  • 标签:C# 解决办法 解决 使用 view list 数据

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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 你的名称空间
{
    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);
            }
        }
    }
}

然后,修改我们的Form1.Designer.cs代码中定义ListView的位置,将原来的

System.Windows.Forms.ListView listView1;

修改为

ListViewNF listView1;

listView1 = System.Windows.Forms.ListView();

修改为

listView1 = new ListViewNF();

转载自:http://www.cnblogs.com/zdkjob/archive/2012/01/17/2324618.html

发表评论
用户名: 匿名