1
我正在創建一個應用程序來從列表框中搜索用戶鍵入的單詞。我想只顯示列表框中與用戶鍵入的字符匹配的項目。我無法找到確切的語法。如何訪問所有列表框項目的索引?
private void textBox1_TextChanged(object sender, EventArgs e)
{
string a=textBox1.Text;
for (int i = 0; i < listBox1.Items.Count; i++)
{
if(a[0]==listBox1.Items(i).char[0])//how to do this?
{........
}
}
}
指數接入使用[] – MethodMan 2011-12-20 15:16:29
@RabbiaAnnum - 修復你的代碼。 – 2011-12-20 15:51:11