📄 about.pas
字号:
unit about;
//{$define REDUCE_VERSION}
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, NWURLLabel;
type
TAboutBox = class(TForm)
lbProductName: TLabel;
Label3: TLabel;
Label4: TLabel;
Button1: TButton;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
AuthtorList: TListBox;
NWURLLabel1: TNWURLLabel;
NWURLLabel2: TNWURLLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
class procedure Execute;
end;
implementation
{$R *.DFM}
{ TAboutBox }
class procedure TAboutBox.Execute;
begin
with TAboutBox.Create(Application) do
begin
ShowModal;
Free;
end;
end;
procedure TAboutBox.FormCreate(Sender: TObject);
begin
{$ifdef REDUCE_VERSION}
lbProductName.Caption:=lbProductName.Caption+' 简版';
{$endif}
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -