aboutform.pas
来自「著名的SecureBlackBox控件完整源码」· PAS 代码 · 共 35 行
PAS
35 行
unit AboutForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TfrmAbout = class(TForm)
btnOK: TButton;
lDemoName: TLabel;
lLibrary: TLabel;
lCopyright: TLabel;
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 + -
显示快捷键?