📄 aboutbox.pas
字号:
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.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -