📄 asabout.pas
字号:
unit asabout;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, shellapi, ComCtrls;
type
TAbout = class(TForm)
Label3: TLabel;
Label1: TLabel;
Image1: TImage;
Label2: TLabel;
Button1: TButton;
Image2: TImage;
procedure Label3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
About: TAbout;
implementation
{$R *.DFM}
procedure TAbout.Label3Click(Sender: TObject);
begin
ShellExecute(Application.Handle,'open','http://www.tmssoftware.com', nil, nil, SW_NORMAL);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -