CHILDWIN.H
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //----------------------------------------------------------------------------
  2. #ifndef ChildWinH
  3. #define ChildWinH
  4. //----------------------------------------------------------------------------
  5. #include <vclControls.hpp>
  6. #include <vclForms.hpp>
  7. #include <vclGraphics.hpp>
  8. #include <vclClasses.hpp>
  9. #include <vclWindows.hpp>
  10. #include <vclSystem.hpp>
  11. #include <StdCtrls.hpp>
  12. //----------------------------------------------------------------------------
  13. class TMDIChild : public TForm
  14. {
  15. __published:
  16. TMemo *Memo1;
  17. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  18. private:
  19. public:
  20. virtual __fastcall TMDIChild(TComponent *Owner);
  21. };
  22. //----------------------------------------------------------------------------
  23. #endif