📄 subclasswnd.h
字号:
/***************************************************************************/
/* NOTE: */
/* This document is copyright (c) by Oz Solomonovich. All non-commercial */
/* use is allowed, as long as this document not altered in any way, and */
/* due credit is given. */
/***************************************************************************/
// SubclassWnd.h : header file
//
#if !defined(AFX_SUBCLASSWND_H__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_)
#define AFX_SUBCLASSWND_H__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CSubclassWnd window
class CSubclassWnd : public CWnd
{
// Construction
public:
CSubclassWnd(HWND hWndSubclass = NULL);
// Attributes
public:
HWND m_Saved_hWnd;
bool m_bIsSubclassed;
// Operations
public:
void DoSubclass(HWND hWndSubclass = NULL);
void DoUnsubclass();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSubclassWnd)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CSubclassWnd();
// Generated message map functions
protected:
//{{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__BE917122_5C03_11D3_BA1A_000000000000__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -