test_form.h
来自「尽量朝“单片”方向设计硬件系统。系统器件越多」· C头文件 代码 · 共 39 行
H
39 行
//---------------------------------------------------------------------------
#ifndef test_formH
#define test_formH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TtestForm : public TForm
{
__published: // IDE-managed Components
TMemo *logMemo;
TBitBtn *btEndTest;
TLabel *lbStatistics;
TBitBtn *btStartAgain;
TBitBtn *btSaveLog;
TSaveDialog *SaveDialog1;
TStaticText *lbStat;
TStaticText *lbDesc;
TLabel *lbDescription;
void __fastcall btEndTestClick(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall btClearLogClick(TObject *Sender);
void __fastcall btStartAgainClick(TObject *Sender);
void __fastcall btSaveLogClick(TObject *Sender);
void __fastcall FormKeyPress(TObject *Sender, char &Key);
private: // User declarations
public: // User declarations
__fastcall TtestForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TtestForm *testForm;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?