検索を作成することはできますが、検索したアイテムをリストで強調表示する方法がわかりません...これが私が持っているものです:
Dim foundItem As ListViewItem = ListView1.FindItemWithText(Me.searchText.Text, False,
0, True)
If (foundItem IsNot Nothing) Then
ListView1.TopItem = foundItem
foundItem.Selected() = True
End If
強調表示する方法がよくわからないので、見つかったことを証明できます...助けてください!!