Hello,
inside of constructor of the MainForm, in c++ Builder (10.3.3 classic compiler Win32) , we call the method to load the saved layout from disk.
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
...
...
LMDDockManager1->LoadFromFile(aFileLay);
...
}
The loaded layout is applied to the visual component after the OnShow method of the MainForm, how we could intercept this event? Maybe something like onLayoutApplied()?
Thanks
Comments