方法: Windows フォーム ComboBox、ListBox、または CheckedListBox コントロールの特定の項目にアクセスする
Windows フォームのコンボ ボックス、リスト ボックス、またはチェック リスト ボックス内の特定の項目にアクセスすることは、必須のタスクです。 これにより、プログラムを使用して、あらゆる場所にあるリストの内容を判別できます。
特定の項目にアクセスするには
特定の項目のインデックスを使用して、
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()); }
関連項目
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback