📄 about.pas
字号:
unit about;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutForm = class(TForm)
OKButton: TButton;
ProgramIcon: TImage;
ProductName: TLabel;
lblVersion: TLabel;
Copyright: TLabel;
lblMail: TLabel;
bvlRegister: TBevel;
lblUser: TStaticText;
lblCompany: TStaticText;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutForm: TAboutForm;
implementation
uses xVersion;
{$R *.DFM}
procedure TAboutForm.FormCreate(Sender: TObject);
begin
lblVersion.caption :='版本:'+RegisteredVersion;
lblUser.Caption :='用户:'+RegisteredUser;
lblCompany.Caption :='公司:'+RegisteredCompany;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -