我想知道是否有可能过滤列表框。我的意思是它以这样一种方式,即我添加一个项目,名称已经在列表框中,你得到一个messagebox.show,告诉你“项已经在列表框中”。并且它不会被添加两次。
答案 0 :(得分:2)
您不需要遍历项目,因为ListBox的Items集合实现了“Contains”方法。
if (listBox1.Items.Contains(Item))
{
MessageBox.Show("ListBox already contains Item");
}
“Item”在这种情况下是来自其他ListBox的项目
更新。你可以写:
if (listBox1.Items.Contains(listBox2.SelectedItem))
{
MessageBox.Show("ListBox already contains Item");
}
else
{
listBox1.Items.Add(listBox2.SelectedItem);
}
答案 1 :(得分:0)
这是一个示例代码尝试并在您的代码中实现它
ListBox.ObjectCollection ListItem1= ListBox1.Items;
if(!string.IsNullOrEmpty(SearchBox.Text))
{
foreach (string str in ListItem1)
{
if (str.Contains(SearchBox.Text))
{
msgbox;
}
}
}
答案 2 :(得分:0)
使用数据绑定可能是解决方案之一:
List<string> SomeData=...
var filtered=SomeData.Where(...); // <-- Your filtering condition here
listBox1.DataSource = new BindingSource(choices, null);
答案 3 :(得分:0)
在列表框中添加列表项的事件/方法中,您可以添加以下内容:
// search for list item in the listbox which has the text
ListItem li = theListBox.Items.FindByText("yourListItemName");
if (li != null)
{
// if list item exists display message
MessageBox.Show("ListBox already contains item with the name");
}
else
{
theListBox.Items.Add("yourListItemName");
}