我想在将其添加到ListBox
之前检查可能条目的值。
我有TextBox
,其中包含可能的条目值。
所以我想检查ListBox
是否已包含值。
答案 0 :(得分:2)
if (!listBoxInstance.Items.Contains("some text")) // case sensitive is not important
listBoxInstance.Items.Add("some text");
if (!listBoxInstance.Items.Contains("some text".ToLower())) // case sensitive is important
listBoxInstance.Items.Add("some text".ToLower());
答案 1 :(得分:0)
只需将列表中的项目与您要查找的值进行比较即可。您可以将项目转换为String。
if (this.listBox1.Items.Contains("123"))
{
//Do something
}
//Or if you have to compare complex values (regex)
foreach (String item in this.listBox1.Items)
{
if(item == "123")
{
//Do something...
break;
}
}
答案 2 :(得分:0)
您可以使用linq,
bool a = listBox1.Items.Cast<string>().Any(x => x == "some text"); // If any of listbox1 items contains some text it will return true.
if (a) // then here we can decide if we should add it or inform user
{
MessageBox.Show("Already have it"); // inform
}
else
{
listBox1.Items.Add("some text"); // add to listbox
}
希望有所帮助,