ipabout.pas
来自「infopower 4000 for delphi 2006」· PAS 代码 · 共 46 行
PAS
46 行
unit ipabout;
{
//
// Components : InfoPower About Dialog
//
// Copyright (c) 1995-2001 by Woll2Woll Software
//
}
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls;
type
TIPAboutForm = class(TForm)
Bevel1: TBevel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Button1: TButton;
Registration: TLabel;
Version: TLabel;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
ARegistration, AVersion: string;
{ Public declarations }
end;
var
IPAboutForm: TIPAboutForm;
implementation
{$R *.DFM}
procedure TIPAboutForm.FormShow(Sender: TObject);
begin
Version.Caption:= AVersion;
Registration.Caption:= ARegistration;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?