f_bz.pas
上传用户:lcqxtx
上传日期:2013-02-15
资源大小:530k
文件大小:1k
源码类别:

企业管理

开发平台:

Delphi

  1. unit f_bz;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ExtCtrls, StdCtrls;
  6. type
  7.   Tw_bz = class(TForm)
  8.     Panel1: TPanel;
  9.     ProgramIcon: TImage;
  10.     ProductName: TLabel;
  11.     Version: TLabel;
  12.     Copyright: TLabel;
  13.     Comments: TLabel;
  14.     StaticText1: TStaticText;
  15.     Timer1: TTimer;
  16.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  17.     procedure Timer1Timer(Sender: TObject);
  18.     procedure StaticText1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24. var
  25.   w_bz: Tw_bz;
  26. implementation
  27. {$R *.dfm}
  28. procedure Tw_bz.FormClose(Sender: TObject; var Action: TCloseAction);
  29. begin
  30. AnimateWindow(self.Handle, 1800, AW_HIDE + AW_CENTER + AW_BLEND);
  31. end;
  32. procedure Tw_bz.Timer1Timer(Sender: TObject);
  33. begin
  34.   Timer1.Enabled:=False;//停止计时
  35. end;
  36. procedure Tw_bz.StaticText1Click(Sender: TObject);
  37. begin
  38. close;
  39. end;
  40. end.