inputbodyinfodlg.cpp

来自「这是一套基于S3C2440,WINCE5下写的家居智能控制网关的程序」· C++ 代码 · 共 46 行

CPP
46
字号
// InputBodyInfoDlg.cpp : implementation file
//

#include "stdafx.h"
#include "test.h"
#include "InputBodyInfoDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CInputBodyInfoDlg dialog


CInputBodyInfoDlg::CInputBodyInfoDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CInputBodyInfoDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CInputBodyInfoDlg)
	m_csBedNo = _T("");
	m_csName = _T("");
	//}}AFX_DATA_INIT
}


void CInputBodyInfoDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CInputBodyInfoDlg)
	DDX_Text(pDX, IDC_EDITBEDNO, m_csBedNo);
	DDX_Text(pDX, IDC_EDITNAME, m_csName);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CInputBodyInfoDlg message handlers

⌨️ 快捷键说明

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