c++ builder XE4, 10.2 Tokyo > Tag가 동일한 TMemo에서 텍스트를 얻는 구현
8745 단어 cppBuilder#migrated
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)
사양
코드 v0.1
Unit1.h
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE で管理されるコンポーネント
TButton *Button1;
TMemo *Memo1;
TMemo *Memo2;
TMemo *Memo3;
void __fastcall Button1Click(TObject *Sender);
private: // ユーザー宣言
String __fastcall getMemoText(TForm *frmPtr, String tag);
public: // ユーザー宣言
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
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)
{
if (Sender == NULL) {
return;
}
TComponent *cmpPtr = (TComponent *)Sender;
String ret = getMemoText(this, cmpPtr->Tag);
ShowMessage(ret);
}
String __fastcall TForm1::getMemoText(TForm *frmPtr, String tag)
{
String ret = L"";
for(int idx=0; idx < frmPtr->ComponentCount; idx++) {
if (dynamic_cast<TMemo *>(frmPtr->Components[idx]) == NULL) {
continue;
}
TMemo *mmPtr = (TMemo *)frmPtr->Components[idx];
if (mmPtr->Tag != tag) {
continue;
}
ret = mmPtr->Text;
}
return ret;
}
//---------------------------------------------------------------------------
TForm *frmPtr을 건네주고 있는 것은, 다른 유닛에 가져가기 전 준비로서. 같은 폼으로 사용하는 경우는 this로 충분.
설정
결과
Reference
이 문제에 관하여(c++ builder XE4, 10.2 Tokyo > Tag가 동일한 TMemo에서 텍스트를 얻는 구현), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/755a7f368fc133fd8147텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)