C++ Builder XE4 > TComboBox > N번째 항목 문자열 가져오기 > ComboBox1->Items->Strings[2]
C++ Builder XE4
처리
TComboBox의 Items에서 정의한 항목 중 N번째 항목의 문자열을 취득한다.
참고
[Delphi Beginner's Tips]
htp://u670. 이 m/에서 lp 히_치 ps/치 ps0086. HTML
by ohishi씨
정보 감사입니다.
선택한 항목 가져오기
Label1.Caption:=ComboBox1.Items.Strings[ComboBox1.ItemIndex];
code
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
ShowMessage( ComboBox1->Items->Strings[0] );
ShowMessage( ComboBox1->Items->Strings[1] );
ShowMessage( ComboBox1->Items->Strings[2] );
}
//---------------------------------------------------------------------------
실패
ComboBox1->Items[2]->Text
같이 얻으려고했다.Items는 TStrings이므로 Strings[] 속성 을 가지고 있다는 이해를 하면 기억에 남기 쉬울지도 모른다.
Items가 TStrings라는 것은 구현 중에 명시된다.
Reference
이 문제에 관하여(C++ Builder XE4 > TComboBox > N번째 항목 문자열 가져오기 > ComboBox1->Items->Strings[2]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/800abd9ca0062dc157ce텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)