Unit1.h
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TImage *Image1;
  16.         TImage *Image2;
  17.         TImage *Image3;
  18.         TImage *Image4;
  19.         TImage *Image5;
  20.         TButton *Button1;
  21.         TLabel *Label1;
  22.         TLabel *Label2;
  23.         TLabel *Label3;
  24.         TLabel *Label4;
  25.         TImage *Image6;
  26.         TButton *Button2;
  27.         void __fastcall Button1Click(TObject *Sender);
  28.         void __fastcall Button2Click(TObject *Sender);
  29. private: // User declarations
  30. public: // User declarations
  31.         __fastcall TForm1(TComponent* Owner);
  32.         void __fastcall SplitColor(TCanvas *S_Cv,TCanvas *D_Cv,int width,int height,int nn);
  33. };
  34. //---------------------------------------------------------------------------
  35. extern PACKAGE TForm1 *Form1;
  36. //---------------------------------------------------------------------------
  37. #endif