Unit1.h
上传用户:gyjjlc
上传日期:2013-03-29
资源大小:2124k
文件大小:1k
源码类别:

多显示器编程

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include "Unit2.h"
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <FileCtrl.hpp>
  11. #include <Grids.hpp>
  12. #include <Outline.hpp>
  13. #include "PBFolderDialog.hpp"
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.     TGroupBox *GroupBox1;
  19.     TLabel *Label1;
  20.     TLabel *Label2;
  21.     TLabel *Label3;
  22.     TComboBox *ComboBox1;
  23.     TEdit *Edit1;
  24.     TMemo *Memo1;
  25.     TButton *Button1;
  26.     TButton *Button2;
  27.     TButton *Button3;
  28.     TPBFolderDialog *PBFolderDialog1;
  29.     TCheckBox *CheckBox1;
  30.     TListBox *ListBox1;
  31.     void __fastcall Button1Click(TObject *Sender);
  32.     void __fastcall Button2Click(TObject *Sender);
  33.     void __fastcall Button3Click(TObject *Sender);
  34.     void __fastcall ListBox1DblClick(TObject *Sender);
  35. private: // User declarations
  36.     TSearchFileThread * pThread;
  37.     
  38. public: // User declarations
  39.     void __fastcall ThreadOnEnd(TObject *Sender);
  40.     __fastcall TForm1(TComponent* Owner);
  41. };
  42. //---------------------------------------------------------------------------
  43. extern PACKAGE TForm1 *Form1;
  44. //---------------------------------------------------------------------------
  45. #endif