本文介绍了我可以验证列表框,以免重复相同的值吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用下拉列表将项目添加到列表框中

Im using a dropdown list to add the items to the listbox

推荐答案

private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
   //check if the item exists already and only add if it doesn't
   if (listBox1.Items.IndexOf(comboBox1.SelectedItem.ToString()) == -1)
   {
      listBox1.Items.Add(comboBox1.SelectedItem.ToString());
   }
}


 if ((listBox1.Items.Cast<string>().ToList())
             .Where(c => c == textBox1.Text).Count() == 0)
                    listBox1.Items.Add(textBox1.Text); 
</string>


if(listBox1.FindString(DropDownlist1.Text)!=-1)
{
listBox1.Items.Add(DropDownlist.Text);
}


这篇关于我可以验证列表框,以免重复相同的值吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 23:12