splash.pas
来自「Delphi利用MVC开发的典型例子」· PAS 代码 · 共 33 行
PAS
33 行
unit Splash;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics, Controls,
Forms, Dialogs, StdCtrls, ExtCtrls;
type
TSplashForm = class(TForm)
Panel1: TPanel;
Label3: TLabel;
Bevel1: TBevel;
Label1: TLabel;
Image1: TImage;
Label2: TLabel;
end;
var
SplashForm: TSplashForm;
implementation
{$R *.DFM}
initialization
SplashForm := TSplashForm.Create(Application);
SplashForm.Show;
SplashForm.Update;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?