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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef CPFrmH
  3. #define CPFrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TfrmCP : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.     TLabel *Label1;
  14.     TLabel *Label2;
  15.     TLabel *lblStatus;
  16.     TEdit *txtName;
  17.     TEdit *txtTag;
  18.     TButton *btnCancel;
  19.     TButton *btnOk;
  20.     TButton *btnDelete;
  21. private: // User declarations
  22. public: // User declarations
  23.     __fastcall TfrmCP(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern TfrmCP *frmCP;
  27. //---------------------------------------------------------------------------
  28. #endif