我正在使用VirtualMode
来填充
List<ListViewItem> m_lstItem;
private void Form1_Load(object sender, EventArgs e)
{
m_lstItem = Enumerable.Range(0, 100000).Select(X => new ListViewItem(new String[] { X.ToString(), (X + 1).ToString() })).ToList();
listView1.VirtualListSize = m_lstItem.Count;
}
private void listView1_RetrieveVirtualItem(object sender, RetrieveVirtualItemEventArgs e)
{
e.Item = m_lstItem[e.ItemIndex];
}
但我无法访问所选项目。访问所选项目时,会抛出Cannot access the selected items collection when the ListView is in virtual mode.
如何在listView
VirtualMode
中获取所选项目
请帮我这样做。
答案 0 :(得分:9)
来自MSDN:
在虚拟模式下,禁用Items集合。尝试访问它会导致InvalidOperationException。 CheckedItems集合和SelectedItems集合也是如此。如果要检索选定或选中的项目,请改用SelectedIndices和CheckedIndices集合。
答案 1 :(得分:2)
Items集合在虚拟模式下不可用作可迭代集合,但始终可以使用Items(SelectedIndices(0))访问单个元素。我发现它也可以使用FULLROWSELECT。该问题在同一网站的另一页上引用:Cannot access the selected items collection when the ListView is in virtual mode?
答案 2 :(得分:0)
出于某种原因,当我尝试使用它时,SelectedIndices总是无效的,可能是因为使用了FULLROWSELECT。
即使文档不清楚,所选项目也可用。我发现它与ItemSelectionChanged事件处理程序为e.ItemIndex
。
希望这对其他人有帮助。