asabout.pas
来自「delphi的超级好用的表格控件」· PAS 代码 · 共 37 行
PAS
37 行
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 + =
减小字号Ctrl + -
显示快捷键?