qryproppage.cpp

来自「数据结构与算法分析(Java版英文).rar」· C++ 代码 · 共 108 行

CPP
108
字号
// QryPropPage1.cpp : implementation file
//

#include "stdafx.h"
#include "resource.h"
#include "QryPropPage.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

IMPLEMENT_DYNCREATE(CQryPropPage1, CPropertyPage)
IMPLEMENT_DYNCREATE(CQryPropPage2, CPropertyPage)
IMPLEMENT_DYNCREATE(CQryPropPage3, CPropertyPage)


/////////////////////////////////////////////////////////////////////////////
// CQryPropPage1 property page

CQryPropPage1::CQryPropPage1() : CPropertyPage(CQryPropPage1::IDD)
{
	//{{AFX_DATA_INIT(CQryPropPage1)
	m_bChildFolder = FALSE;
	//}}AFX_DATA_INIT
}

CQryPropPage1::~CQryPropPage1()
{
}

void CQryPropPage1::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CQryPropPage1)
	DDX_Check(pDX, IDC_CHILDFOLDER, m_bChildFolder);
	//}}AFX_DATA_MAP
}


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


/////////////////////////////////////////////////////////////////////////////
// CQryPropPage2 property page

CQryPropPage2::CQryPropPage2() : CPropertyPage(CQryPropPage2::IDD)
{
	//{{AFX_DATA_INIT(CQryPropPage2)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CQryPropPage2::~CQryPropPage2()
{
}

void CQryPropPage2::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CQryPropPage2)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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


/////////////////////////////////////////////////////////////////////////////
// CQryPropPage3 property page

CQryPropPage3::CQryPropPage3() : CPropertyPage(CQryPropPage3::IDD)
{
	//{{AFX_DATA_INIT(CQryPropPage3)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CQryPropPage3::~CQryPropPage3()
{
}

void CQryPropPage3::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CQryPropPage3)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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


⌨️ 快捷键说明

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