C#:使用ListView動態添加數據一直閃爍的解決辦法


首先,自定義一個類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


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM