aboutu.pas
来自「《Delphi开发人员指南》配书原码」· PAS 代码 · 共 39 行
PAS
39 行
unit AboutU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, OleCtrls, CARDS, AxCard_TLB;
type
TAboutBox = class(TForm)
Panel2: TPanel;
CardBtn: TButton;
ProductName: TLabel;
Prod: TLabel;
Version: TLabel;
Copyright: TLabel;
Comments: TLabel;
Card: TCardX;
procedure CardBtnClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.CardBtnClick(Sender: TObject);
begin
Card.AboutBox;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?