controlpage.cpp

来自「机器人运动学动力学及控制的一个小程序,供有兴趣的人参考」· C++ 代码 · 共 77 行

CPP
77
字号
// ControlPage.cpp : implementation file
//

#include "stdafx.h"
#include "resource.h"
#include "ControlPage.h"

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

IMPLEMENT_DYNCREATE(CControlPage, CPropertyPage)
IMPLEMENT_DYNCREATE(CTypePage, CPropertyPage)


/////////////////////////////////////////////////////////////////////////////
// CControlPage property page

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

CControlPage::~CControlPage()
{
}

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


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


/////////////////////////////////////////////////////////////////////////////
// CTypePage property page

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

CTypePage::~CTypePage()
{
}

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


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


⌨️ 快捷键说明

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