childwin.h
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef childwinH
  3. #define childwinH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "fcDemoRichEdit.hpp"
  10. #include <ComCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TMDIChild : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TfcDemoRichEdit *fcDemoRichEdit1;
  16.         void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  17.         void __fastcall FormDestroy(TObject *Sender);
  18.         void __fastcall FormActivate(TObject *Sender);
  19.         void __fastcall FormCreate(TObject *Sender);
  20. private: // User declarations
  21. public: // User declarations
  22.         __fastcall TMDIChild(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TMDIChild *MDIChild;
  26. //---------------------------------------------------------------------------
  27. #endif