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

📄 optionpage_program.cpp

📁 一个串口通信的程序
💻 CPP
字号:
// OptionPage_Program.cpp : implementation file
//

#include "stdafx.h"
#include "datasvr.h"
#include "OptionPage_Program.h"

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

/////////////////////////////////////////////////////////////////////////////
// COptionPage_Program property page

IMPLEMENT_DYNCREATE(COptionPage_Program, CPropertyPage)

COptionPage_Program::COptionPage_Program() : CPropertyPage(COptionPage_Program::IDD)
{
	//{{AFX_DATA_INIT(COptionPage_Program)
	m_autoRun = -1;
	//}}AFX_DATA_INIT
}

COptionPage_Program::~COptionPage_Program()
{
}

void COptionPage_Program::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(COptionPage_Program)
	DDX_Radio(pDX, IDC_RADIO1, m_autoRun);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// COptionPage_Program message handlers

⌨️ 快捷键说明

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