subclasswnd.h
来自「这是VCF框架的代码」· C头文件 代码 · 共 57 行
H
57 行
#if !defined(AFX_SUBCLASSWND_H__8B612D75_6FA5_4C58_B73F_78C023CD52CE__INCLUDED_)#define AFX_SUBCLASSWND_H__8B612D75_6FA5_4C58_B73F_78C023CD52CE__INCLUDED_#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000//This code was shamelessly ripped off From Oz Solomonovich's Wndtabs CSubClass code// SubClassWnd.h : header file///////////////////////////////////////////////////////////////////////////////// CSubClassWnd windowclass CSubClassWnd : public CWnd{// Constructionpublic: CSubClassWnd(HWND hWndSubclass=NULL);// Attributespublic:// Operationspublic:// Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSubClassWnd) //}}AFX_VIRTUAL// Implementationpublic: void DoUnsubclass(); void DoSubclass(HWND hWndSubclass=NULL); virtual ~CSubClassWnd(); // Generated message map functionsprotected: bool m_bIsSubclassed; HWND m_Saved_hWnd; //{{AFX_MSG(CSubClassWnd) // NOTE - the ClassWizard will add and remove member functions here. //}}AFX_MSG DECLARE_MESSAGE_MAP()};///////////////////////////////////////////////////////////////////////////////{{AFX_INSERT_LOCATION}}// Microsoft Visual C++ will insert additional declarations immediately before the previous line.#endif // !defined(AFX_SUBCLASSWND_H__8B612D75_6FA5_4C58_B73F_78C023CD52CE__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?