📄 about.h
字号:
//---------------------------------------------------------------------------
#ifndef AboutH
#define AboutH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
#include <StdCtrls.hpp>
//---------------------------------------------------------------------------
class TFormAbout : public TForm
{
__published: // IDE-managed Components
TImage *ImageTitle;
TImage *ImageClose;
TLabel *LabelTitle;
TShape *ShapeClient;
TLabel *Label6;
TLabel *Label5;
TLabel *Label4;
TLabel *Label3;
TImage *Image1;
void __fastcall ImageCloseClick(TObject *Sender);
void __fastcall ImageTitleMouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
void __fastcall OnWMActive(TMessage &Msg);
BEGIN_MESSAGE_MAP
MESSAGE_HANDLER(WM_ACTIVATE,TMessage,OnWMActive)
END_MESSAGE_MAP(TForm);
public: // User declarations
__fastcall TFormAbout(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormAbout *FormAbout;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -