⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cstatusbar.h

📁 俄罗斯方块3D 程序+源码俄罗斯方块3D(程序+源码
💻 H
字号:
#ifndef CStatusBar_h
#define CStatusBar_h

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#include "CCommctrl.h"

/////////////////////////////////////////////////////////////
//状态条类
/////////////////////////////////////////////////////////////
class CStatusBar : public CCommctrl 
{
public:
	CStatusBar();
	~CStatusBar();

	bool Init( HWND hwnd, HINSTANCE hInstance );
	bool HandleMsg( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam );

	void SetParts();
	void UpdateStatusBar( int fps );
	void UpdateScore( int score );
	void UpdateState( int index );
};

#endif 

⌨️ 快捷键说明

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