aboutform.pas

来自「著名的SecureBlackBox控件完整源码」· PAS 代码 · 共 43 行

PAS
43
字号
unit AboutForm;

interface

uses
  Windows,
  Messages,
  SysUtils,
  Classes,
  Graphics,
  Controls,
  Forms,

  Dialogs,
  StdCtrls;

type
  TfrmAbout = class(TForm)
    lTitle: TLabel;
    lProduct: TLabel;
    lCopyright: TLabel;
    btnOK: TButton;
    procedure btnOKClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  frmAbout: TfrmAbout;

implementation

{$R *.DFM}

procedure TfrmAbout.btnOKClick(Sender: TObject);
begin
  ModalResult := mrOk;
end;

end.

⌨️ 快捷键说明

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