Me.ListView1.Items


程序代码:

        Dim ItemC As ListView.ListViewItemCollection = Me.ListView1.Items
        For Each Item As ListViewItem In ItemC
            MsgBox(Item.SubItems(0).Text)
        Next


程序代码:

        Dim ItemC As ListView.SelectedListViewItemCollection = Me.ListView1.SelectedItems
        For Each Item As ListViewItem In ItemC
            MsgBox(Item.SubItems(2).Text)
        Next




ListView1.Items.Clear();与 ListView1.Clear() 有什么不同?

Change listview subitem fore color

欢迎关注微信公众账号ByCAD