ABOUT.H
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小: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