⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.h

📁 这是通过COM口对声波触摸屏控制卡进行仿真测试的程序的源码. BCB
💻 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 + -