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

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "ChildWin.h"
  5. //--------------------------------------------------------------------- 
  6. #pragma resource "*.dfm"
  7. //--------------------------------------------------------------------- 
  8. __fastcall TMDIChild::TMDIChild(TComponent *Owner)
  9. : TForm(Owner)
  10. {
  11. }
  12. //--------------------------------------------------------------------- 
  13. void __fastcall TMDIChild::FormClose(TObject *Sender, TCloseAction &Action)
  14. {
  15. Action = caFree;
  16. }
  17. //---------------------------------------------------------------------