Delphi – 获取TListView中所选项目的当前索引

前端之家收集整理的这篇文章主要介绍了Delphi – 获取TListView中所选项目的当前索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在表单中有一个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.

原文链接:https://www.f2er.com/delphi/101291.html

猜你在找的Delphi相关文章