?? frmaboutbox.pas
字號:
unit FrmAboutBox;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls, jpeg,shellapi;
type
TFrmAboutBox1 = class(TForm)
Panel1: TPanel;
ProgramIcon: TImage;
ProductName: TLabel;
Version: TLabel;
Copyright: TLabel;
OKButton: TButton;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
procedure OKButtonClick(Sender: TObject);
procedure Label5Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FrmAboutBox1: TFrmAboutBox1;
implementation
{$R *.dfm}
procedure TFrmAboutBox1.OKButtonClick(Sender: TObject);
begin
close;
end;
procedure TFrmAboutBox1.Label5Click(Sender: TObject);
begin
shellexecute(handle,nil,pchar('http://www.newease.com/'),nil,nil,sw_shownormal);
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -