如何查看列表框中选定项目中的某些特定单词?

时间:2012-11-14 01:26:29

标签: vb.net

我试过了:

  1. 如果ListBox1.Items.Contains(“myword”)那么
  2. 如果ListBox1.SelectedIndex = ListBox1.Items.IndexOf(“myword”)那么
  3. 如果ListBox1.SelectedItems.Item(“myword”)则
  4. 但没有效果。

1 个答案:

答案 0 :(得分:2)

尝试类似这样的内容,listbox.items属性为ListBox.ObjectCollection

For Each i As Object In ListBox1.SelectedItems
    If CStr(i).Contains("myword") Then
        BackColor = Color.Blue ' Do your logic here, I just used setting the BackColor for a test
    End If
Next