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

開発者は、Windows フォームの DomainUpDown コントロールに、コードで項目を追加できます。 コントロールの Items プロパティに項目を追加するには、DomainUpDown.DomainUpDownItemCollection クラスの Add メソッドまたは Insert メソッドを呼び出します。 Add メソッドを使用した場合、項目はコレクションの末尾に追加されます。Insert メソッドを使用した場合は、指定した位置に項目が追加します。

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

  1. Add メソッドを使用して、項目一覧の末尾に項目を追加するか、

    DomainUpDown1.Items.Add("noodles")  
    
    domainUpDown1.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->Items->Insert(2, "rice");  
    

関連項目