about.pas

来自「详细的ERP设计资料」· PAS 代码 · 共 34 行

PAS
34
字号
unit About;

interface

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

type
  TAboutForm = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    OKButton: TButton;
    procedure Label2Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

implementation

uses ShellAPI;

{$R *.dfm}

procedure TAboutForm.Label2Click(Sender: TObject);
begin
  ShellExecute(Application.Handle, nil, PChar(TLabel(Sender).Caption), nil, nil, SW_SHOWNORMAL);
end;

end.

⌨️ 快捷键说明

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