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

📄 ccommctrl.h

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

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

#include <windows.h>
#include <commctrl.h>

class CCommctrl  
{
public:
	CCommctrl();
	virtual ~CCommctrl();

	virtual bool Init( HWND hwnd, HINSTANCE hInstance ) = 0;
	void Free();
	virtual bool HandleMsg( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ) = 0;
	HWND GetHWnd() { return m_hwnd; }

protected:
	HWND m_hwnd;
};

#endif

⌨️ 快捷键说明

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