GraphDemo.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:2k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef GraphDemoH
- #define GraphDemoH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ComCtrls.hpp>
- #include <OleCtrls.hpp>
- #include <VCFI.hpp>
- #include "MSChart20Lib_OCX.h"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TComboBox *ComboBox1;
- TEdit *Edit1;
- TEdit *Edit2;
- TEdit *Edit3;
- TUpDown *UpDown1;
- TUpDown *UpDown2;
- TButton *Button1;
- TButton *Button2;
- TButton *Button3;
- TButton *Button4;
- TMSChart *MSChart1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall ComboBox1Click(TObject *Sender);
- void __fastcall UpDown1Click(TObject *Sender, TUDBtnType Button);
- void __fastcall UpDown2Click(TObject *Sender, TUDBtnType Button);
- void __fastcall Button1Click(TObject *Sender);
- void __fastcall Button3Click(TObject *Sender);
- void __fastcall Button2Click(TObject *Sender);
- void __fastcall Button4Click(TObject *Sender);
- void __fastcall Edit3Change(TObject *Sender);
- void __fastcall MSChart1DataUpdated(TObject *Sender, short *axisID,
- short *AxisIndex, short *labelSetIndex, short *LabelIndex,
- short *MouseFlags, short *Cancel);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif