refabout.h

来自「《C++ Builder 5技术内幕》一书附带的程序源代码」· C头文件 代码 · 共 40 行

H
40
字号
//----------------------------------------------------------------------------
#ifndef refaboutH
#define refaboutH
//----------------------------------------------------------------------------
#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>
#include <ComCtrls.hpp>
//----------------------------------------------------------------------------
class TAboutBox : public TForm
{
__published:
    TPanel *PanelShow;
	TLabel *ProductName;
	TLabel *Version;
	TLabel *Copyright;
	TButton *OKButton;
    TAnimate *AnimateCompass;
    TBevel *BevelDiv;
    TLabel *LabelOS;
    TLabel *LabelMemory;
    TLabel *LabelMemNum;
private:
    OSVERSIONINFO m_osVersionInfo;
    MEMORYSTATUS  m_msMemoryStatus;
public:
	virtual __fastcall TAboutBox(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern PACKAGE TAboutBox *AboutBox;
//----------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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