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

📄 readsmdlg.cpp

📁 一个通过串口和计算机连接的vc小程序
💻 CPP
字号:
// ReadSMDlg.cpp : implementation file
//

#include "stdafx.h"
#include "smsinterface.h"
#include "ReadSMDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CReadSMDlg dialog


CReadSMDlg::CReadSMDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CReadSMDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CReadSMDlg)
	m_smphone = _T("");
	m_smtext = _T("");
	m_smtime = _T("");
	m_smtype = _T("");
	//}}AFX_DATA_INIT
}


void CReadSMDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CReadSMDlg)
	DDX_Text(pDX, IDC_STATIC_SM_PHONE, m_smphone);
	DDX_Text(pDX, IDC_STATIC_SM_TEXT, m_smtext);
	DDX_Text(pDX, IDC_STATIC_SM_TIME, m_smtime);
	DDX_Text(pDX, IDC_STATIC_SM_TYPE, m_smtype);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CReadSMDlg message handlers

⌨️ 快捷键说明

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