c++ builder XE4, 10.2 Tokyo > 動的生成 > TLabelを動的に生成する
2616 ワード
動作環境
C++ Builder XE4 on Windows 7 pro
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/26)
TLabelをフォームデザインでなく、コードで生成したい。
参考
https://groups.google.com/forum/#!topic/delphicbuilder-ml-archive/h3lxsfy1ABI
void __fastcall TPressuresForm::Button2Click(TObject *Sender)
{
TLabel *work;
work = new TLabel( this );
work->Name = L"L_test";
work->Height = 20;
work->Width = 100;
work->Left = 10;
work->Top = 5;
work->Caption = L"TEST LABEL";
work->Visible = true;
work->Parent = this;
}
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > 動的生成 > TLabelを動的に生成する), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/c0e4bcf9a3eae51a3525著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .