splashform.pas
来自「Delphi树和酒店式的框架」· PAS 代码 · 共 32 行
PAS
32 行
unit SplashForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls;
type
TFrmSplash = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
LblNameHighlight: TLabel;
LblNameShadow: TLabel;
LblProductName: TLabel;
IcoProgram: TImage;
Label1: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FrmSplash: TFrmSplash;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?