📄 aboutpropertyfrm.pas
字号:
unit AboutPropertyFrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, SJCustomProperty, cxLookAndFeelPainters, PropStorageEh,
StdCtrls, cxButtons, ExtCtrls, fcLabel, jpeg, JvImage, JvComponent,
JvComputerInfo, JvaScrollText, JvHtControls, JvScrollText;
type
TfrmPropertyAbout = class(TSJCustomPropertyForm)
fcLabel39: TfcLabel;
Image1: TImage;
JvImage1: TJvImage;
Label1: TLabel;
Panel1: TPanel;
labCompany: TLabel;
Label3: TLabel;
labComputer: TLabel;
Label5: TLabel;
labSystem: TLabel;
Label2: TLabel;
Label4: TLabel;
JvHTLabel1: TJvHTLabel;
ComputerInfo: TJvComputerInfo;
ScrollText: TJvScrollText;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmPropertyAbout: TfrmPropertyAbout;
implementation
{$R *.dfm}
procedure TfrmPropertyAbout.FormCreate(Sender: TObject);
begin
inherited;
labCompany.Caption := Computerinfo.Company;
labComputer.Caption:= Computerinfo.ComputerName;
labSystem.Caption := Computerinfo.ProductName + ' Ver ' + Computerinfo.VersionNumber;
ScrollText.Active := True;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -