fcabout.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit fcabout;
  2. interface
  3. {$i fcIfDef.pas}
  4. uses
  5.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  6.   ExtCtrls, StdCtrls, fcLabel;
  7. type
  8.   TfcAbout1stForm = class(TForm)
  9.     Bevel1: TBevel;
  10.     Label4: TLabel;
  11.     Button1: TButton;
  12.     Registration: TLabel;
  13.     Version: TLabel;
  14.     fcLabel1: TfcLabel;
  15.     fcLabel2: TfcLabel;
  16.     procedure FormShow(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     ARegistration, AVersion: string;
  21.     { Public declarations }
  22.   end;
  23. var
  24.   fcAbout1stForm: TfcAbout1stForm;
  25. implementation
  26. {$R *.DFM}
  27. procedure TfcAbout1stForm.FormShow(Sender: TObject);
  28. begin
  29.    Version.Caption:= 'Version: ' + AVersion;
  30.    Registration.Caption:= ARegistration;
  31. end;
  32. end.