📄 about.~pas
字号:
unit about;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, LMDCustomComponent, LMDSysInfo, LMDControl, LMDBaseControl,
LMDBaseGraphicControl, LMDBaseLabel, LMDCustomLabel, LMDLabel, StdCtrls,
RzCmboBx;
type
Taboutform = class(TForm)
Image1: TImage;
LMDLabel1: TLMDLabel;
LMDSysInfo1: TLMDSysInfo;
LMDLabel2: TLMDLabel;
LMDLabel3: TLMDLabel;
Bevel1: TBevel;
Bevel2: TBevel;
LMDLabel4: TLMDLabel;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
aboutform: Taboutform;
implementation
{$R *.DFM}
procedure Taboutform.FormCreate(Sender: TObject);
begin
lmdlabel1.Caption:=lmdsysinfo1.Computername;
lmdlabel3.Caption:=lmdsysinfo1.Platform;
lmdlabel4.Caption:=lmdsysinfo1.RegisteredCompany;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -