zoukankan      html  css  js  c++  java
  • WinForm 加载大数据时不闪烁的ListView

    自己之前做小工具的时候,遇到这个问题,记录一下。。。

    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);
    
                }
    
            }
    
        }
    
    }
  • 相关阅读:
    JS操作JSON总结
    jQuery对select操作
    MS SQL GUID
    QT延时方法
    MySQL 实践
    MySQL 入门教程
    asp.net获取URL和IP地址
    C#-foreach与yield
    C#—序列化(Serialize)和反序列化(NonSerialize)
    Newtonsoft.Json序列化和反序列
  • 原文地址:https://www.cnblogs.com/codedisco/p/12549242.html
Copyright © 2011-2022 走看看