listview的性能太低.有没有办法提高他加载数据的能力?

解决方案 »

  1.   

    this.myListView1.BeginUpdate();
                this.myListView1.EndUpdate();
      

  2.   

    试一下可绑定的控件,
    Yet another databound ListView (This time for .net2)
    By Moshe Plotkin 
    http://www.codeproject.com/useritems/DBListViewForV2.asp
      

  3.   

    MS 的那些现成 ASP.NET 控件性能都是一塌糊涂, 大型 web 站点根本不能这么用(除非你硬件 BT). 自己从底层写吧.
      

  4.   

    我用的是winform"this.myListView1.BeginUpdate();this.myListView1.EndUpdate();"我也用了.listview加载200k的文本文件就死机.每个listviewitem是一个词语
      

  5.   

    每个ListViewItem是一个词语,那就用ListBox了,用ListView不是浪费吗