tabcontrol.h

来自「控件得用法总结」· C头文件 代码 · 共 15 行

H
15
字号
#pragma once

class TabControl
{
public:
	TabControl(void);
	~TabControl(void);
	HWND           m_hWnd;                  // handle to main window
	HINSTANCE      m_hInstance;
	static LRESULT CALLBACK _WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
protected:
	
	LRESULT OnCommand(WORD wNotifyCode, WORD wID, HWND hwndCtrl);
	LRESULT OnPaint();
};

⌨️ 快捷键说明

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