这部分代码相当于是在initialization段内吗? ( 积分: 21 )

  • 主题发起人 主题发起人 awfigsk
  • 开始时间 开始时间
A

awfigsk

Unregistered / Unconfirmed
GUEST, unregistred user!
这部分代码相当于是在initialization段内吗?<br><br><br>unit Splash;<br><br>interface<br><br>uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,<br> &nbsp;ExtCtrls;<br><br>type<br> &nbsp;TSplashScreen = class(TForm)<br> &nbsp; &nbsp;StatusPanel: TPanel;<br> &nbsp;end;<br><br>var<br> &nbsp;SplashScreen: TSplashScreen;<br><br>implementation<br><br>{$R *.DFM}<br><br>[red]begin<br> &nbsp;SplashScreen := TSplashScreen.Create(Application);<br> &nbsp;SplashScreen.Show;<br> &nbsp;SplashScreen.Update;<br>end.[/red]<br><br>红色这部分代码是相当于在initialization部分吗?如果在一个项目中引用了该单元,这部分代码在主程执行前执行?是这样吗?
 
这部分代码相当于是在initialization段内吗?<br><br><br>unit Splash;<br><br>interface<br><br>uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,<br> &nbsp;ExtCtrls;<br><br>type<br> &nbsp;TSplashScreen = class(TForm)<br> &nbsp; &nbsp;StatusPanel: TPanel;<br> &nbsp;end;<br><br>var<br> &nbsp;SplashScreen: TSplashScreen;<br><br>implementation<br><br>{$R *.DFM}<br><br>[red]begin<br> &nbsp;SplashScreen := TSplashScreen.Create(Application);<br> &nbsp;SplashScreen.Show;<br> &nbsp;SplashScreen.Update;<br>end.[/red]<br><br>红色这部分代码是相当于在initialization部分吗?如果在一个项目中引用了该单元,这部分代码在主程执行前执行?是这样吗?
 
是的,在application.initialize前执行
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
913
SUNSTONE的Delphi笔记
S
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
758
import
I
后退
顶部