|
I do n’t know which part you are talking about, if it is the whole, then the code is executed when the window instance is created (Create)
These codes are saved in the dfm file created by Delphi. You will see the following line in the pas file of the window
{$ R * .dfm}
This is to call the dfm file creation window with the same name as the pas file. In some applications, you can create another dfm file to implement the same interface with different code.
Specifically through CreateNew |
|