Unit2.h
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:1k
源码类别:

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit2H
  3. #define Unit2H
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm2 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. TLabel *Label1;
  14. TLabel *Label2;
  15. TButton *Button1;
  16. TButton *Button2;
  17. TEdit *Edit1;
  18. TEdit *Edit2;
  19. void __fastcall Edit1Change(TObject *Sender);
  20. private: // User declarations
  21. public: // User declarations
  22. __fastcall TForm2(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TForm2 *Form2;
  26. //---------------------------------------------------------------------------
  27. #endif