4
- 如果ListBox1.Items.Contains( 「myWord」 的)然後
- 如果ListBox1.SelectedIndex = ListBox1.Items.IndexOf( 「myWord」 的)然後
- 如果ListBox1.SelectedItems。項目(「myword」)Then
但沒有效果。
但沒有效果。
嘗試這樣的事情,在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
非常感謝您! :)它的作品完美。工作完成。 – blueye89
@ blueye89歡迎您提供幫助 –