📄 hotelpropertysheet.h
字号:
// HotelPropertySheet.h : header file
//
// CHotelPropertySheet is a modeless property sheet that is
// created once and not destroyed until the application
// closes. It is initialized and controlled from
// CHotelPropertyFrame.
#ifndef __HOTELPROPERTYSHEET_H__
#define __HOTELPROPERTYSHEET_H__
#include "HotelPropertyPage1.h"
/////////////////////////////////////////////////////////////////////////////
// CHotelPropertySheet
class CHotelPropertySheet : public CPropertySheet
{
DECLARE_DYNAMIC(CHotelPropertySheet)
// Construction
public:
CHotelPropertySheet(CWnd* pWndParent = NULL);
// Attributes
public:
CHotelPropertyPage1 m_Page1;
CHotelPropertyPage2 m_Page2;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CHotelPropertySheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CHotelPropertySheet();
virtual void PostNcDestroy();
// Generated message map functions
protected:
//{{AFX_MSG(CHotelPropertySheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __HOTELPROPERTYSHEET_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -