如何将字符串值分配给列表框选定的值

时间:2012-02-01 10:34:06

标签: c# listbox

我想在给出字符串时选择列表框项。该字符串名称在列表框项上。如何将字符串分配给列表框所选项目。

2 个答案:

答案 0 :(得分:1)

我认为你正在寻找这样的东西:

foreach (var item in ListBox.Items)
{
   if (item.Text.Contains(stringToBeSearched))
   {
       //select item in the ListBox
       ListBox.SelectedValue = item.Value;
       break;
   }
}

希望这会有所帮助。

答案 1 :(得分:1)

尝试使用Listbox.Text,Listbox 在ListBox中搜索与指定文本匹配的项目并选择该项目。

ListBox.Text= "string Value" ;