방법: Windows Forms ComboBox, ListBox 또는 CheckedListBox 컨트롤의 특정 항목에 액세스
업데이트: 2007년 11월
Windows Forms 콤보 상자, 목록 상자 또는 확인 목록 상자의 특정 항목에 액세스하는 것은 중요한 작업입니다. 이 작업을 통해 어떤 위치에서든지 목록 내에 어떤 항목이 있는지 프로그래밍 방식으로 확인할 수 있습니다.
특정 항목에 액세스하려면
특정 항목의 인덱스를 사용하여 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.get_Items().get_Item( i).ToString() ; }
private: String^ GetItemText(int i) { // Return the text of the item using the index: return (comboBox1->Items->Item[i]->ToString()); }