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

📄 mypropage.cpp

📁 一个球面积,曲率半径,子午圈的C++程序,有需要的请下载
💻 CPP
字号:
// MyProPage.cpp : implementation file
//

#include "stdafx.h"
#include "DtPro.h"
#include "MyProPage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyProPage property page

IMPLEMENT_DYNCREATE(CMyProPage, CPropertyPage)

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

CMyProPage::~CMyProPage()
{
}

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


BEGIN_MESSAGE_MAP(CMyProPage, CPropertyPage)
	//{{AFX_MSG_MAP(CMyProPage)
	ON_BN_CLICKED(IDC_BUTTON2, OnOK)
	ON_BN_CLICKED(IDC_BUTTON3, OnCancel)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyProPage message handlers

void CMyProPage::OnOK() 
{
	// TODO: Add your control notification handler code here

	CDialog::OnOK();
}

void CMyProPage::OnCancel() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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