Linq从ListViewItemCollections中选择项目在c#
发布时间:2020-12-15 06:56:22 所属栏目:百科 来源:网络整理
导读:如何在ListViewItemCollections中使用 Linq在C#中选择ListViewItem? 新新200的X- 200 X- 200 200 X- 200 200 X- 200 200 X- 1992 200 X- ListViewItemCollections lv = listview1.items;var test = from xxx in lv where xxx.text = "data 1" select xxx;te
如何在ListViewItemCollections中使用
Linq在C#中选择ListViewItem?
新新200的X- 200 X- 200 200 X- 200 200 X- 200 200 X- 1992 200 X- ListViewItemCollections lv = listview1.items; var test = from xxx in lv where xxx.text = "data 1" select xxx; test <--- now has the listviewitem with "data 1" as string value.. 解决方法
要获取ListViewItem的枚举器,您必须投射ListView的Items集合:
IEnumerable<ListViewItem> lv = listview1.items.Cast<ListViewItem>(); 然后,您可以使用LINQ: var test = from xxx in lv where xxx.text = "data 1" select xxx; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |