次の方法で共有


方法 : Windows フォーム DomainUpDown コントロールにプログラムで項目を追加する

更新 : 2007 年 11 月

Windows フォームの DomainUpDown コントロールにコードで項目を追加できます。DomainUpDown.DomainUpDownItemCollection クラスの Add メソッドまたはInsert メソッドを呼び出して、コントロールの Items プロパティに項目を追加します。Add メソッドは、コレクションの最後に項目を追加します。Insert メソッドは、指定された位置に項目を追加します。

新しい項目を追加するには

  1. Add メソッドを使用して、項目のリストの最後に項目を追加します。

    DomainUpDown1.Items.Add("noodles")
    
    domainUpDown1.Items.Add("noodles");
    
    domainUpDown1.get_Items().Add("noodles");
    
    domainUpDown1->Items->Add("noodles");
    

    または

  2. 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

DomainUpDown.DomainUpDownItemCollection.Add

ArrayList.Insert

その他の技術情報

DomainUpDown コントロール (Windows フォーム)