效果如下图,本人网上搜索资料加上自己的研究终于实现了在combobox子项中加上删除按钮. 一.窗体中的代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Runtime.InteropS
ComboBox和TextBox控件都带有自动前缀匹配,只要设置其中的AutoCompleteMode,AutoCompleteSource,AutoCompleteCustomSource三个属性的值即可. 如果是ComboBox绑定数据的话,,AutoCompleteSource直接选择ListItems. 如果不绑定数据的话,就需要在AutoCompleteCustomSource集合里添加自己的提示数据. 然后将,AutoCompleteSource选择CustomSource. Aut