最近用到combobox控件,点击显示信息,但每点击一次,都要增加很多重复行,经过多次修改,终于实现了去掉重复行。下面是代码:
int count=combobox1.Items.Count;//获取combobox1中所有行的数量
int i,j;
for(i=0;i<count;i++)
{
String str1=combobox1.Items[i].ToString();
for(j=i+1;j<count;j++)
{
String str2=combobox1.Items[j].ToString();
if(str1==str2)
{
combobox.Items.RemoveAt(j);
j–;
count–
}
}
}
c#中ComboBox控件去掉重复行
最新推荐文章于 2020-11-02 14:27:53 发布