aboutdlog.h

来自「C++ Builder程序设计范例——中国象棋 pdf电子书加源码」· C头文件 代码 · 共 37 行

H
37
字号
//----------------------------------------------------------------------------
#ifndef AboutDlogH
#define AboutDlogH
//----------------------------------------------------------------------------
#include <System.hpp>
#include <Windows.hpp>
#include <SysUtils.hpp>
#include <Classes.hpp>
#include <Graphics.hpp>
#include <Forms.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
//----------------------------------------------------------------------------
class TAboutDlg : public TForm
{
__published:
    TImage *BkingIcon;
    TLabel *ProductName;
    TLabel *Copyright;
    TLabel *Maker;
    TLabel *Adress;
    TLabel *Tele;
    TImage *RkingIcon;
    TPanel *Panel1;
    TButton *OKBut;
        void __fastcall OKButClick(TObject *Sender);
private:
public:
    virtual __fastcall TAboutDlg(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern TAboutDlg *AboutDlg;
//----------------------------------------------------------------------------
#endif    
     

⌨️ 快捷键说明

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