about.pas.svn-base
来自「TFormDesigner allows you move and resize」· SVN-BASE 代码 · 共 42 行
SVN-BASE
42 行
(* GREATIS FORM DESIGNER DEMO *)
(* Copyright (C) 2001-2003 Greatis Software *)
(* http://www.greatis.com/formdes.htm *)
(* b-team@greatis.com *)
unit About;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, ShellAPI;
type
TfrmAbout = class(TForm)
pnlName: TPanel;
lblDescription: TLabel;
pnlSpace: TPanel;
lblHomePage: TLabel;
btnClose: TButton;
procedure lblLinkClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmAbout: TfrmAbout;
implementation
{$R *.DFM}
procedure TfrmAbout.lblLinkClick(Sender: TObject);
begin
with Sender as TLabel do
ShellExecute(Application.Handle,nil,PChar(Hint),nil,nil,SW_SHOWDEFAULT);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?