abnormalwin.h

来自「C++Builder程序员编程手记《配书光盘》」· C头文件 代码 · 共 28 行

H
28
字号
//---------------------------------------------------------------------------

#ifndef AbnormalWinH
#define AbnormalWinH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TAbnormalWindow : public TForm
{
__published:	// IDE-managed Components
  TImage *Image1;
  void __fastcall FormShow(TObject *Sender);
  void __fastcall Image1Click(TObject *Sender);
private:
  void SetAbnormalWin(HWND Window);	// User declarations
public:		// User declarations
  __fastcall TAbnormalWindow(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAbnormalWindow *AbnormalWindow;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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