aboutform.pas

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

PAS
27
字号
unit AboutForm;

interface

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

type
  TfrmAbout = class(TForm)
    btnOK: TButton;
    lbDemoName: TLabel;
    lbLibrary: TLabel;
    lbCopyright: TLabel;
  private
  public
  end;

var
  frmAbout: TfrmAbout;

implementation

{$R *.DFM}

end.

⌨️ 快捷键说明

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