?? optionsheet.h
字號:
// OptionSheet.h : header file
//
// This class defines custom modal property sheet
// COptionSheet.
#ifndef __OPTIONSHEET_H__
#define __OPTIONSHEET_H__
#include "CDIPage.h"
/////////////////////////////////////////////////////////////////////////////
// COptionSheet
class COptionSheet : public CPropertySheet
{
DECLARE_DYNAMIC(COptionSheet)
// Construction
public:
COptionSheet(CWnd* pWndParent = NULL);
// Attributes
public:
CDIPage1 m_Page1;
CDIPage2 m_Page2;
CDIPage3 m_Page3;
CDIPage4 m_Page4;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(COptionSheet)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~COptionSheet();
// Generated message map functions
protected:
//{{AFX_MSG(COptionSheet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
void OnApplyNow();
void OnOK();
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif // __OPTIONSHEET_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -