⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pageone.cpp

📁 《vc++扩展编程实例》源码。运用Visual C++ 5.0或6.0的高级编程技巧
💻 CPP
字号:
// PageOne.cpp : implementation file
//

#include "stdafx.h"
#include "wzd.h"
#include "PageOne.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CPageOne property page

IMPLEMENT_DYNCREATE(CPageOne, CPropertyPage)

CPageOne::CPageOne() : CPropertyPage(CPageOne::IDD)
{
	//{{AFX_DATA_INIT(CPageOne)
	m_bWzd1 = FALSE;
	m_bWzd2 = FALSE;
	m_bWzd3 = FALSE;
	//}}AFX_DATA_INIT
}

CPageOne::~CPageOne()
{
}

void CPageOne::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPageOne)
	DDX_Check(pDX, IDC_WZD_CHECK1, m_bWzd1);
	DDX_Check(pDX, IDC_WZD_CHECK2, m_bWzd2);
	DDX_Check(pDX, IDC_WZD_CHECK3, m_bWzd3);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CPageOne, CPropertyPage)
	//{{AFX_MSG_MAP(CPageOne)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPageOne message handlers

⌨️ 快捷键说明

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