pointdialog.cpp

来自「网络数据库管理软件是一个集网络技术与数据库技术于一体的软件」· C++ 代码 · 共 48 行

CPP
48
字号
// PointDialog.cpp : implementation file
//

#include "stdafx.h"
#include "datamanager.h"
#include "PointDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPointDialog dialog


CPointDialog::CPointDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CPointDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CPointDialog)
	m_PointMemo = _T("");
	m_PointName = _T("");
	m_PointValue = _T("");
	//}}AFX_DATA_INIT
}


void CPointDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPointDialog)
	DDX_Text(pDX, IDC_POINT_MEMO, m_PointMemo);
	DDX_Text(pDX, IDC_POINT_NAME, m_PointName);
	DDX_Text(pDX, IDC_POINT_VALUE, m_PointValue);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CPointDialog message handlers

⌨️ 快捷键说明

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