cbdemo1.h

来自「让喇叭发声的控件」· C头文件 代码 · 共 39 行

H
39
字号
// Andy Preston - Apollo Developments - Swindon U.K. - andy@apollod.freeserve.co.uk

// Please note: I do not use C++ Builder, I hope there's no mistakes in this.
// But if there are it will take me a while to fix them.

#ifndef CBDemo1H
#define CBDemo1H

#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>

class TDemoFrm : public TForm {
  __published:
    TGroupBox *GroupBox1;
    TButton *OKBtn;
    TButton *IntBtn;
    TButton *ErrorBtn;
    TGroupBox *GroupBox2;
    TButton *SlideBtn;
    TButton *BoatBtn;
    TButton *PainBtn;
    TButton *CloseBtn;
    void __fastcall OKBtnClick(TObject *Sender);
    void __fastcall IntBtnClick(TObject *Sender);
    void __fastcall ErrorBtnClick(TObject *Sender);
    void __fastcall SlideBtnClick(TObject *Sender);
    void __fastcall BoatBtnClick(TObject *Sender);
    void __fastcall PainBtnClick(TObject *Sender);
    void __fastcall CloseBtnClick(TObject *Sender);
  public:
    __fastcall TDemoFrm(TComponent* Owner);
};

extern TDemoFrm *DemoFrm;

#endif

⌨️ 快捷键说明

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