本文介绍了使用combobox通过字母匹配文本框和组合框列表搜索C#winforms的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要使用字母匹配在combobox文本框中进行搜索的解决方案。
我尝试了什么:
i尝试了一种简单的搜索方式,包括开始索引或列表项的开始位置
i need solution for seaching in combobox textbox with alphabet matching.
What I have tried:
i tried a simple way of search with start index or start position of list items
推荐答案
this.comboBox1.DropDownStyle = ComboBoxStyle.DropDown;
this.comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
this.comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;
this.comboBox1.Items.Add("One");
this.comboBox1.Items.Add("Two");
this.comboBox1.Items.Add("Three");
this.comboBox1.Items.Add("Four");
这篇关于使用combobox通过字母匹配文本框和组合框列表搜索C#winforms的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!