listbox.FindString()
アイテムのリストボックスを検索するために各アイテムをループする方法を見つけようとして立ち往生しています。ほんの一例:
コード例:
string myString = "hi";
int index = listBox1.FindString(myString, -1);
if (index != -1) {
listBox1.SetSelected(index, true);
MessageBox.Show("Found the item \"" + myString + "\" at index: " + index);
}