formsplashunit.pas
来自「duiwenjiandechuli fangbianguanli.」· PAS 代码 · 共 44 行
PAS
44 行
unit FormSplashUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Gauges, XPMenu, jpeg;
type
TFormSplash = class(TForm)
XPMenu1: TXPMenu;
Image1: TImage;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label1: TLabel;
Gauge2: TGauge;
Label2: TLabel;
Label3: TLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
end;
var
FormSplash : TFormSplash;
implementation
uses PublicU;
{$R *.dfm}
procedure TFormSplash.FormCreate(Sender: TObject);
begin
Label3.Caption := 'Version number:' + Cnt_Version +
#13#10 + 'Builder:' + Cnt_Builder;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?