次の方法で共有


方法: Windows フォーム ComboBox、ListBox、または CheckedListBox コントロールの特定の項目にアクセスする

Windows フォームのコンボ ボックス、リスト ボックス、またはチェック リスト ボックス内の特定の項目にアクセスすることは、必須のタスクです。 これにより、プログラムを使用して、あらゆる場所にあるリストの内容を判別できます。

特定の項目にアクセスするには

  1. 特定の項目のインデックスを使用して、Items コレクションに対してクエリを実行します。

    Private Function GetItemText(i As Integer) As String  
       ' Return the text of the item using the index:  
       Return ComboBox1.Items(i).ToString  
    End Function  
    
    private string GetItemText(int i)  
    {  
       // Return the text of the item using the index:  
       return (comboBox1.Items[i].ToString());  
    }  
    
    private:  
       String^ GetItemText(int i)  
       {  
          // Return the text of the item using the index:  
          return (comboBox1->Items->Item[i]->ToString());  
       }  
    

関連項目