📄 test_com.h
字号:
//---------------------------------------------------------------------------
#ifndef test_comH
#define test_comH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Db.hpp>
#include <DBCtrls.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class Tnew_thread : public TThread
{
private:
protected:
virtual void __fastcall Execute(void);
public:
__fastcall Tnew_thread(void);
};
class Tform_test_com : public TForm
{
__published: // IDE-managed Components
TDataSource *DataSource1;
TDBGrid *DBGrid1;
TPanel *Panel1;
TButton *exit;
TDBNavigator *DBNavigator1;
void __fastcall exitClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
Tnew_thread *new_thread;
public: // User declarations
__fastcall Tform_test_com(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Tform_test_com *form_test_com;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -