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.
我的winform中有一个组合框。我有一些东西在里面。我想运行自动完成 true 并从列表项中填充。我正在使此属性正常工作,但我希望所有列表项都应出现在组合中,并且我键入的任何内容都应保留在顶部。
请推荐 谢谢
要将列表框项添加到您可以使用的组合框:
ComboBox1.Items.AddRange((From item In ListBox1.Items Select item).ToArray)