方法: Windows フォームの ComboBox、ListBox、または CheckedListBox コントロールに項目を追加または削除する
項目は、さまざまな方法で Windows フォームのコンボ ボックス、リスト ボックス、またはチェック リスト ボックスに追加できます。これらのコントロールはさまざまなデータ ソースにバインドできるためです。 ただし、このトピックでは、最も簡単な方法について説明します。データ バインディングは不要です。 通常、表示される項目は文字列です。ただし、任意のオブジェクトを使用できます。 コントロールに表示されるテキストは、オブジェクトの ToString
メソッドによって返される値です。
項目を追加するには
ObjectCollection
クラスのAdd
メソッドを使用して、文字列またはオブジェクトをリストに追加します。 コレクションは、Items
プロパティを使用して参照されます。ComboBox1.Items.Add("Tokyo")
comboBox1.Items.Add("Tokyo");
comboBox1->Items->Add("Tokyo");
- または
Insert
メソッドを使用して、リスト内の目的の位置に文字列またはオブジェクトを挿入します。CheckedListBox1.Items.Insert(0, "Copenhagen")
checkedListBox1.Items.Insert(0, "Copenhagen");
checkedListBox1->Items->Insert(0, "Copenhagen");
- または
配列全体を
Items
コレクションに割り当てます。Dim ItemObject(9) As System.Object Dim i As Integer For i = 0 To 9 ItemObject(i) = "Item" & i Next i ListBox1.Items.AddRange(ItemObject)
System.Object[] ItemObject = new System.Object[10]; for (int i = 0; i <= 9; i++) { ItemObject[i] = "Item" + i; } listBox1.Items.AddRange(ItemObject);
Array<System::Object^>^ ItemObject = gcnew Array<System::Object^>(10); for (int i = 0; i <= 9; i++) { ItemObject[i] = String::Concat("Item", i.ToString()); } listBox1->Items->AddRange(ItemObject);
アイテムを削除するには
項目を削除するには、
Remove
メソッドまたはRemoveAt
メソッドを呼び出します。Remove
には、削除する項目を指定する引数が 1 つあります。 を使用すると、RemoveAt
指定したインデックス番号の項目が削除されます。' To remove item with index 0: ComboBox1.Items.RemoveAt(0) ' To remove currently selected item: ComboBox1.Items.Remove(ComboBox1.SelectedItem) ' To remove "Tokyo" item: ComboBox1.Items.Remove("Tokyo")
// To remove item with index 0: comboBox1.Items.RemoveAt(0); // To remove currently selected item: comboBox1.Items.Remove(comboBox1.SelectedItem); // To remove "Tokyo" item: comboBox1.Items.Remove("Tokyo");
// To remove item with index 0: comboBox1->Items->RemoveAt(0); // To remove currently selected item: comboBox1->Items->Remove(comboBox1->SelectedItem); // To remove "Tokyo" item: comboBox1->Items->Remove("Tokyo");
すべての項目を削除するには
コレクションからすべての項目を削除するには、
Clear
メソッドを呼び出します。ListBox1.Items.Clear()
listBox1.Items.Clear();
listBox1->Items->Clear();
関連項目
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback