C#WinFormListView在虚拟模式下,从缓冲之中获取所需的数据进行加载,性能会有很大提高。步骤:(1)必须设置VirtualMode为true并设置VirtualListSize大小;(2)绑定该事件RetrieveVirtualItem(3)如果中间更新了数据需要重新设置VirtualListSize,并调用Invalidate()方法。  (4)禁用selectedItem,在该模式下使用selectedItem将产生异常,可以用下面方法代替