我正在做一个使用列表框的项目,我可以添加项目、删除项目、更新项目但我无法搜索,这是我的搜索代码
string search = Person.listperson[listBox1.SelectedIndex].lastname;
foreach (String s in search)
{
if (s.Equals(textBox6.Text))
{
//show searched items
MessageBox.Show("Success!");
}
}
你能帮我解决这个问题吗?谢谢 :)
我这里有一个搜索代码,但它不适用于按钮,我怎样才能将它应用到按钮上?
private void textBox6_TextChanged(object sender, EventArgs e)
{
int index = listBox1.FindString(this.textBox6.Text);
if (0 <= index)
{
listBox1.SelectedIndex = index;
}
}