Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表视图,它的第一列是类 ID。
在 ListView1_SelectedIndexChanged 上,即选择每一行时,我希望变量 ClassID 存储 Class ID 的值。
我必须使用什么代码?
我试过 ClassID = ListView1.Items.subitems(0).text,但它不起作用。
您很接近,但您忘记指定要访问的行。
ClassID = ListView1.Items.subitems(0).text
应该
ClassID = ListView1.selectedItems(0).subitems(0).text
请注意,这假设您一次只允许它选择一行。
我找到了答案。它应该是
ClassID = ListView1.Items(ListView1.FocusedItem.Index).SubItems(0).Text