摘要: 解决C#中ListView闪烁的办法在项目中使用ListView演示数据的变化过程, 发现闪烁得太厉害了, Google并综合对比后, 发现下面的方法比较简单且有效, 记录一下: 1 internal class ListViewNeverFlickering : System.Windows.Forms.ListView 2 { 3 public ListViewNeverFlickering() 4 { 5 // Activate double buffering 6 this.SetStyle... 阅读全文
posted @ 2012-01-29 16:52 ascrat 阅读(1363) 评论(0) 推荐(0) 编辑