?? aboutbox.pas
字號(hào):
unit AboutBox;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
RXCtrls, StdCtrls, ShellApi;
type
TFormAbout = class(TForm)
RxLabel1: TRxLabel;
RxLabel2: TRxLabel;
RxLabel3: TRxLabel;
RxLabelWWW: TRxLabel;
Button1: TButton;
procedure RxLabelWWWClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
procedure TFormAbout.RxLabelWWWClick(Sender: TObject);
begin
ShellExecute(Handle,nil,'www.fuwu.com.cn',nil,nil,SW_SHOW);
end;
end.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -