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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef ListFrmH
  3. #define ListFrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TfrmList : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.     TBevel *Bevel1;
  15.     TListBox *lst;
  16.     TButton *Button1;
  17.     void __fastcall lstClick(TObject *Sender);
  18.     void __fastcall FormShow(TObject *Sender);
  19. private: // User declarations
  20. public: // User declarations
  21.     __fastcall TfrmList(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern TfrmList *frmList;
  25. //---------------------------------------------------------------------------
  26. #endif