unit2.h
来自「<<C++Builder 6实用编程100例>>随书光盘」· C头文件 代码 · 共 23 行
H
23 行
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <Classes.hpp>
//---------------------------------------------------------------------------
class BubbleThread : public TThread
{
private:
int X,Y1,Y2;
TColor color;
protected:
void __fastcall Execute();
void __fastcall Paint();
public:
__fastcall BubbleThread(bool CreateSuspended);
__fastcall BubbleThread(TColor color, int XPos, int YPos,
bool CreateSuspended=True);
};
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?