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)