c++ builder XE4, 10.2 Tokyo > 階層構造のTPanelからTFormを取得する > TComponent *owner = Panel1_1_1->Owner;
2545 ワード
動作確認
C++ Builder XE4
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)
Form314:TFormに以下の階層でTPanelがあるとする。
Panel1
..Panel1_1
....Panel1_1_1
Panel1_1_1などからForm314のポインタを取得するには
(Unityでいうところの .GetComponentInParent() )
Ownerというのでよさそう。
void __fastcall TForm314::Button1Click(TObject *Sender)
{
TComponent *owner = Panel1->Owner;
OutputDebugString(owner->Name.c_str());
owner = Panel1_1->Owner;
OutputDebugString(owner->Name.c_str());
owner = Panel1_1_1->Owner;
OutputDebugString(owner->Name.c_str());
}
結果
デバッグ出力: Form314プロセス Project1.exe
デバッグ出力: Form314プロセス Project1.exe
デバッグ出力: Form314プロセス Project1.exe
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > 階層構造のTPanelからTFormを取得する > TComponent *owner = Panel1_1_1->Owner;), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/a263c08f7278dd25b570著者帰属:元の著者の情報は、元の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 .