aboutf.pas

来自「BarCodePrint条码打印机打印管理」· PAS 代码 · 共 48 行

PAS
48
字号
unit AboutF;

interface

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

type
  TAboutBox = class(TForm)
    Panel1: TPanel;
    Label1: TLabel;
    Label2: TLabel;
    Panel2: TPanel;
    Image1: TImage;
    ButtonOk: TButton;
    Label3: TLabel;
    procedure ButtonOkClick(Sender: TObject);
  private
    { Private declarations }
  public
    procedure MakeSplash;
  end;

var
  AboutBox: TAboutBox;

implementation

{$R *.DFM}

procedure TAboutBox.MakeSplash;
begin
  BorderStyle := bsNone;
  ButtonOk.Visible:=False;

  Height:=Height-ButtonOk.Height;
  Show;
  Update;
end;

procedure TAboutBox.ButtonOkClick(Sender: TObject);
begin
    close;
end;

end.

⌨️ 快捷键说明

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