propertypageex.h

来自「windows ce开发技巧与实例光盘代码」· C头文件 代码 · 共 63 行

H
63
字号
#if !defined(AFX_PROPERTYPAGEEX_H__DB8E3561_E597_4E5D_B796_A2A2675442CA__INCLUDED_)
#define AFX_PROPERTYPAGEEX_H__DB8E3561_E597_4E5D_B796_A2A2675442CA__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// PropertyPageEx.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CPropertyPageEx dialog

class CPropertyPageEx : public CPropertyPage
{
	DECLARE_DYNCREATE(CPropertyPageEx)

// Construction
public:
	CPropertyPageEx() : CPropertyPage() {}
	CPropertyPageEx(UINT nIDTemplate, UINT nIDCaption = 0) :
		CPropertyPage(nIDTemplate, nIDCaption)
	{
	}

	CPropertyPageEx(LPCTSTR lpszTemplateName, UINT nIDCaption = 0) :
		CPropertyPage(lpszTemplateName, nIDCaption)
	{
	}

	~CPropertyPageEx() {}

// Dialog Data
	//{{AFX_DATA(CPropertyPageEx)
		// NOTE - ClassWizard will add data members here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_DATA


// Overrides
	// ClassWizard generate virtual function overrides
	//{{AFX_VIRTUAL(CPropertyPageEx)
	public:
	virtual void OnOK();
	virtual void OnCancel();
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CPropertyPageEx)
		// NOTE: the ClassWizard will add 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_PROPERTYPAGEEX_H__DB8E3561_E597_4E5D_B796_A2A2675442CA__INCLUDED_)

⌨️ 快捷键说明

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