BloggerAds廣告

2015年5月5日 星期二

[C#]ListView會閃爍

目前遇到使用ListView有大量資料不斷更新時

會有閃爍的狀況

有試過BeginUpdate(), EndUpdate(), 可是感覺沒作用

新增以下的Class, 取代ListView就可以了

參考網址


    public class ListViewNF : System.Windows.Forms.ListView
    {
        public ListViewNF()
        {
            // Open double buffer
            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);
            }
        }
    }

沒有留言:

張貼留言