AboutUnit.pas
上传用户:xgd119
上传日期:2007-05-02
资源大小:514k
文件大小:1k
- unit AboutUnit;
- interface
- uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- ProgramIcon: TImage;
- ProductName: TLabel;
- Version: TLabel;
- Copyright: TLabel;
- OKButton: TButton;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- procedure OKButtonClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- implementation
- {$R *.dfm}
- procedure TAboutBox.OKButtonClick(Sender: TObject);
- begin
- self.close;
- end;
- end.
-