splash.pas

来自「GREATIS Print Suite Pro for Delphi (3-7,」· PAS 代码 · 共 38 行

PAS
38
字号
(*  GREATIS PRINT SUITE DEMO                     *)
(*  Copyright (C) 2001-2007 Greatis Software     *)
(*  http://www.greatis.com/delphicb/printsuite/  *)
(*  http://www.greatis.com/bteam.html            *)

unit Splash;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  ExtCtrls, StdCtrls;

type
  TfrmSplash = class(TForm)
    pnlClient: TPanel;
    pnlInfo: TPanel;
    lblName: TLabel;
    lblCopyright: TLabel;
    imgIcon: TImage;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

implementation

{$R *.DFM}

procedure TfrmSplash.FormCreate(Sender: TObject);
begin
  imgIcon.Picture.Icon.Assign(Application.Icon);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?