ABOUT.PAS
资源名称:检查猫.zip [点击查看]
上传用户:wk1985825
上传日期:2010-01-27
资源大小:102k
文件大小:1k
源码类别:
Modem编程
开发平台:
Delphi
- unit About;
- interface
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
- type
- TAboutBox = class(TForm)
- Panel1: TPanel;
- Panel2: TPanel;
- Panel3: TPanel;
- pnVersion: TPanel;
- BitBtn1: TBitBtn;
- Bevel1: TBevel;
- Image1: TImage;
- procedure BitBtn1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- implementation
- {$R *.DFM}
- procedure TAboutBox.BitBtn1Click(Sender: TObject);
- begin
- Close;
- end;
- end.