在WinForm中,如何删除控件combox下拉列表中的历史记录

2025-01-07 09:19:41
推荐回答(4个)
回答1:

comboBox本身就没有历史记录,没有存储功能。但是可以删除记录。
comboBox1.Items.RemoveAt[i];
i就是记录索引

回答2:

前台 :WinForm窗体中,comboBox1控件里面有下拉选项

后台:private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
int n = this.comboBox1.SelectedIndex;

this.comboBox1.Items.RemoveAt(n);
} //鼠标点到哪项就移除哪项

回答3:

可以通过访问combox对象的Items集合的Clear()方法;实现代码:
comboBox.Items.Clear();
可以清除comboBox的所有项,试试吧

回答4:

clear();