colormode.h

来自「Visual C++ 网络通信编程实用案例精选 的配套光盘」· C头文件 代码 · 共 23 行

H
23
字号
#if !defined(COLORMODE_H)
#define COLORMODE_H

#include <windows.h>
#include <windowsx.h>
#include <stdio.h>

//颜色模式对话框的处理
class	CColorMode
{
public:

	CColorMode();
	~CColorMode();

	// 消息处理函数
	BOOL	OnInitDialog(HWND hDlg,HWND hwndFocus, LPARAM lParam);
	void	OnCommand(HWND hDlg,int iId,HWND hWndCtl,UINT iCodeNotify);

	int		m_bmBitsPixel;
};

#endif

⌨️ 快捷键说明

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