ListView详细信息在最后一列Visual Basic中插入数据

时间:2014-12-25 12:38:28

标签: vb.net listview

您好我想在我的lisview的最后一栏插入数据,我该怎么做? 我尝试使用此代码ListView1.SelectedItems(0) = "yes"ListView1.SelectedIndices.Add("Yes")

enter image description here

实际上我想要的是在初始插入后更新最后一列以及如何在列表视图的开头添加项目。

1 个答案:

答案 0 :(得分:1)

使用以下代码解决

Dim index As Integer
If ListView1.SelectedItems.Count > 0 Then
    index = ListView1.SelectedIndices(0)
    listOfItems(index).SubItems(3).Text = "Qualified"
End If