CRM客户管理系统报备34/35,listview闪烁问题解决

前三位后四位归属地程序 ListView闪烁的问题解决办法:

要防止Listview不闪烁

        public ListViewNF()
        {
            // 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);
        }

需要评论区留言

 

你可能感兴趣的:(归属地类软件)