📄 pointdialog.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -