Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个项目,我希望当我在组合框中按“a”时,对应的从“a”开始的单词会显示到组合框中。
试试这个:
comboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend; comboBox1.AutoCompleteSource = AutoCompleteSource.ListItems;
您正在寻找自动过滤器组合框。 这里, 这里 和这里