?? propertyframe.h
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -