ch7_3u.h

来自「C++ Builder程序员学习数据结构第7章」· C头文件 代码 · 共 48 行

H
48
字号
//---------------------------------------------------------------------------

#ifndef ch7_3uH
#define ch7_3uH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <Grids.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE-managed Components
        TGroupBox *GroupBox1;
        TPanel *Panel1;
        TPanel *Panel2;
        TPanel *pn;
        TPanel *Panel4;
        TPanel *Panel5;
        TEdit *ein;
        TBitBtn *BitBtn3;
        TBitBtn *BitBtn4;
        TStringGrid *sg;
        TButton *Button1;
        TLabel *lout;
        TLabel *sout;
        TTimer *t1;
        TLabel *Label1;
        TSplitter *Splitter1;
        void __fastcall BitBtn3Click(TObject *Sender);
        void __fastcall BitBtn4Click(TObject *Sender);
        void __fastcall einKeyUp(TObject *Sender, WORD &Key,
          TShiftState Shift);
        void __fastcall FormCreate(TObject *Sender);
        void __fastcall Button1Click(TObject *Sender);
        void __fastcall t1Timer(TObject *Sender);
private:	// User declarations
public:		// User declarations
        __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?