propertyframe.h

来自「科大通讯录~可以输入、修改通讯录中的数据」· C头文件 代码 · 共 49 行

H
49
字号
// PropertyFrame.h : header file
//
// This file contains the mini-frame that controls modeless 
// property sheet CMyPropertySheet.

#ifndef __PROPERTYFRAME_H__
#define __PROPERTYFRAME_H__

#include "MyPropertySheet.h"

/////////////////////////////////////////////////////////////////////////////
// CPropertyFrame frame

class CPropertyFrame : public CMiniFrameWnd
{
	DECLARE_DYNCREATE(CPropertyFrame)
//Construction
public:
	CPropertyFrame();

// Attributes
public:
	CMyPropertySheet* m_pModelessPropSheet;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CPropertyFrame)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CPropertyFrame();

	// Generated message map functions
	//{{AFX_MSG(CPropertyFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnClose();
	afx_msg void OnSetFocus(CWnd* pOldWnd);
	afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////
#endif	// __PROPERTYFRAME_H__

⌨️ 快捷键说明

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