我在表单中有一个TListView,我想知道所选项目的索引.我试图找到我的TListView的方法或属性,它提供了这些信息但我发现的唯一的东西是lvClients.Selected它并没有给出这个项目的索引.
有人可以帮我找到如何在TListView中获取所选项目的索引吗?谢谢.
解决方法
使用
ItemIndex属性.
值-1表示没有选择.
来自文档:
Read ItemIndex to determine which item is selected. The first item in the list has index 0,the second item has index 1,and so on. If no item is selected,the value of ItemIndex is -1. If the list control supports multiple selected items,ItemIndex is the index of the selected item that has focus.