?? main.h
字號:
//---------------------------------------------------------------------------
#ifndef MAINH
#define MAINH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm {
__published: // IDE-managed Components
TLabel *Label2;
TComboBox *ComboBox2;
TButton *Button1;
TEdit *Edit1;
TMemo *M1;
void __fastcall ComboBox2Change(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall Button1Click(TObject *Sender);
private: // User declarations
public: // User declarations
void __fastcall draw_axis(void);
char testmode;
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
class TRead : public TThread {
private:
protected:
void __fastcall DisplayIt(void);
void __fastcall Execute();
public:
__fastcall TRead(bool CreateSuspended);
};
class TWrite : public TThread {
private:
protected:
void __fastcall Execute();
public:
__fastcall TWrite(bool CreateSuspended);
} ;
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -