📄 about.pas
字号:
{------------------------------------------------------------------------------
MayHua Client--
Copyright (c) 2002,05 MayHua Corporation
*Author : Zhang Xiao Feng
*LastUpdated: 2002-6-19
*SourceName : about.pas
--------------------------------------------------------------------------------}
unit about;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls,ShellAPI, jpeg, CyberXPMenu;
type
TForm_about = class(TForm)
Bevel1: TBevel;
Label1: TLabel;
Label2: TLabel;
lbHomeHS: TLabel;
lbVer: TLabel;
Image: TImage;
btnOK: TButton;
CyberXPMenu1: TCyberXPMenu;
procedure FormCreate(Sender: TObject);
procedure lbHomeHSClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form_about: TForm_about;
implementation
uses
unit_PublicInfo;
{$R *.dfm}
procedure TForm_about.FormCreate(Sender: TObject);
begin
lbVer.Caption := lbVer.Caption + GetFileVersion(ParamStr(0));
end;
procedure TForm_about.lbHomeHSClick(Sender: TObject);
begin
ShellExecute(Handle, 'open', 'http://www.chinaecai.com', nil, nil, SW_MAXIMIZE);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -