码迷,mamicode.com
首页 > 其他好文 > 详细

2014.2.23加载大数据时不闪烁的listView

时间:2016-10-15 19:33:31      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

 

namespace 相册处理

{

    //将ListView重载为此新类,解决加载过程中闪烁的问题

    //在designer.cs中改写:

    //private ListViewNeverFlickering listView1;

    //this.listView1 = new ListViewNeverFlickering();

 

    internal class ListViewNeverFlickering : System.Windows.Forms.ListView

    {

        public ListViewNeverFlickering()

        {

            // Activate double buffering

            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);

            }

        }

    }

}

2014.2.23加载大数据时不闪烁的listView

标签:

原文地址:http://www.cnblogs.com/mol1995/p/5965046.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!