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

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "Unit2.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma resource "*.dfm"
  8. TForm2 *Form2;
  9. //---------------------------------------------------------------------------
  10. __fastcall TForm2::TForm2(TComponent* Owner)
  11.         : TForm(Owner)
  12. {
  13. }
  14. //---------------------------------------------------------------------------
  15. void __fastcall TForm2::FormDblClick(TObject *Sender)
  16. {
  17.   Close();
  18.   ModalResult=mrOk;
  19. }
  20. //---------------------------------------------------------------------------
  21.