2013-07-12 3 views

答えて

14

int curIndex = listbox.Items.IndexOf("abber"); 
if(curIndex >= 0) 
{ 
    MessageBox.Show(listbox.Items[curIndex].ToString()); 
} 
5
int index = listBox1.Items.IndexOf("Specify string here"); 
関連する問題