about.h
资源名称:cd_man.zip [点击查看]
上传用户:deyixm
上传日期:2007-01-06
资源大小:43k
文件大小:1k
源码类别:
行业应用
开发平台:
Visual C++
- //----------------------------------------------------------------------------
- #ifndef aboutH
- #define aboutH
- //----------------------------------------------------------------------------
- #include <vclSystem.hpp>
- #include <vclWindows.hpp>
- #include <vclSysUtils.hpp>
- #include <vclClasses.hpp>
- #include <vclGraphics.hpp>
- #include <vclForms.hpp>
- #include <vclControls.hpp>
- #include <vclStdCtrls.hpp>
- #include <vclButtons.hpp>
- #include <vclExtCtrls.hpp>
- //----------------------------------------------------------------------------
- class TAboutBox : public TForm
- {
- __published:
- TPanel *Panel1;
- TImage *ProgramIcon;
- TLabel *ProductName;
- TLabel *Version;
- TLabel *Copyright;
- TLabel *Comments;
- TButton *OKButton;
- TLabel *Label1;
- TLabel *Label2;
- TImage *Image2;
- void __fastcall OKButtonClick(TObject *Sender);
- private:
- public:
- virtual __fastcall TAboutBox(TComponent* AOwner);
- };
- //----------------------------------------------------------------------------
- extern PACKAGE TAboutBox *AboutBox;
- //----------------------------------------------------------------------------
- #endif