about.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
- //----------------------------------------------------------------------------
- #ifndef AboutH
- #define AboutH
- //----------------------------------------------------------------------------
- #include <vclExtCtrls.hpp>
- #include <vclButtons.hpp>
- #include <vclStdCtrls.hpp>
- #include <vclControls.hpp>
- #include <vclForms.hpp>
- #include <vclGraphics.hpp>
- #include <vclClasses.hpp>
- #include <vclWindows.hpp>
- #include <vclSystem.hpp>
- //----------------------------------------------------------------------------
- class TAboutBox : public TForm
- {
- __published:
- TPanel *Panel1;
- TButton *OKButton;
- TImage *ProgramIcon;
- TLabel *ProductName;
- TLabel *Version;
- TLabel *Copyright;
- TLabel *Comments;
- private:
- public:
- virtual __fastcall TAboutBox(TComponent *Owner);
- };
- //----------------------------------------------------------------------------
- extern TAboutBox *AboutBox;
- //----------------------------------------------------------------------------
- #endif