c#-组中列表视图项的索引
作者:互联网
ListViewItem.Index属性获取ListView控件中该项的从零开始的索引.
现在,我需要ListViewGroup中某项的索引,而不是整个控件.
可能吗?
解决方法:
您可以在组中找到其索引,如下所示:
ListViewItem item = /* certain item in a ListviewGroup */;
var index = item.Group.Items.IndexOf(item);
标签:listviewitem,listview,c,winforms,listviewgroup 来源: https://codeday.me/bug/20191027/1940734.html