📄 inputdatadlg.cpp
字号:
// InputDataDlg.cpp : implementation file
//
#include "stdafx.h"
#include "Ex050202.h"
#include "InputDataDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInputDataDlg dialog
CInputDataDlg::CInputDataDlg(CWnd* pParent /*=NULL*/)
: CDialog(CInputDataDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CInputDataDlg)
m_strData = _T("");
m_iYPos = 0;
m_iXPos = 0;
//}}AFX_DATA_INIT
}
void CInputDataDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInputDataDlg)
DDX_Text(pDX, IDC_DATA, m_strData);
DDX_Text(pDX, IDC_YPOS, m_iYPos);
DDX_Text(pDX, IDC_XPOS, m_iXPos);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInputDataDlg, CDialog)
//{{AFX_MSG_MAP(CInputDataDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInputDataDlg message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -