comboBox本身就没有历史记录,没有存储功能。但是可以删除记录。
comboBox1.Items.RemoveAt[i];
i就是记录索引
前台 :WinForm窗体中,comboBox1控件里面有下拉选项
后台:private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
int n = this.comboBox1.SelectedIndex;
this.comboBox1.Items.RemoveAt(n);
} //鼠标点到哪项就移除哪项
可以通过访问combox对象的Items集合的Clear()方法;实现代码:
comboBox.Items.Clear();
可以清除comboBox的所有项,试试吧
clear();