方法 : Windows フォーム DomainUpDown コントロールにプログラムで項目を追加する
Windows フォームの DomainUpDown コントロールにコードで項目を追加できます。 DomainUpDown.DomainUpDownItemCollection クラスの Add メソッドまたはInsert メソッドを呼び出して、コントロールの Items プロパティに項目を追加します。 Add メソッドは、コレクションの最後に項目を追加します。Insert メソッドは、指定された位置に項目を追加します。
新しい項目を追加するには
Add メソッドを使用して、項目のリストの最後に項目を追加します。
DomainUpDown1.Items.Add("noodles")
domainUpDown1.Items.Add("noodles");
domainUpDown1.get_Items().Add("noodles");
domainUpDown1->Items->Add("noodles");
または
Insert メソッドを使用して、リスト内の指定した位置に項目を挿入します。
' Inserts an item at the third position in the list DomainUpDown1.Items.Insert(2, "rice")
// Inserts an item at the third position in the list domainUpDown1.Items.Insert(2, "rice");
// Inserts an item at the third position in the list domainUpDown1.get_Items().Insert(2, "rice");
// Inserts an item at the third position in the list domainUpDown1->Items->Insert(2, "rice");
参照
参照
DomainUpDown コントロールの概要 (Windows フォーム)
DomainUpDown.DomainUpDownItemCollection.Add