BMP.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef BMPH
  3. #define BMPH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <FileCtrl.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TPanel *Panel1;
  16.         TDriveComboBox *DriveComboBox1;
  17.         TDirectoryListBox *DirectoryListBox1;
  18.         TFilterComboBox *FilterComboBox1;
  19.         TFileListBox *FileListBox1;
  20.         TPanel *Panel2;
  21.         TImage *Image1;
  22.         TScrollBar *ScrollBar1;
  23.         TScrollBar *ScrollBar2;
  24.         TImage *Image2;
  25.         void __fastcall FormCreate(TObject *Sender);
  26.         void __fastcall FileListBox1Click(TObject *Sender);
  27.         void __fastcall ScrollBar1Scroll(TObject *Sender,
  28.           TScrollCode ScrollCode, int &ScrollPos);
  29.         void __fastcall ScrollBar2Scroll(TObject *Sender,
  30.           TScrollCode ScrollCode, int &ScrollPos);
  31. private: // User declarations
  32. public: // User declarations
  33.         __fastcall TForm1(TComponent* Owner);
  34. };
  35. //---------------------------------------------------------------------------
  36. extern PACKAGE TForm1 *Form1;
  37. //---------------------------------------------------------------------------
  38. #endif