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

📄 cbdemo1.h

📁 让喇叭发声的控件
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -