inputstationdlg.cpp
来自「公交查询生成系统 Find.exe可以查询指定站点间的转站方案(可实现无限转)」· C++ 代码 · 共 44 行
CPP
44 行
// InputStationDlg.cpp : implementation file
//
#include "stdafx.h"
#include "Modify.h"
#include "InputStationDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInputStationDlg dialog
CInputStationDlg::CInputStationDlg(CWnd* pParent /*=NULL*/)
: CDialog(CInputStationDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CInputStationDlg)
m_name = _T("");
//}}AFX_DATA_INIT
}
void CInputStationDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInputStationDlg)
DDX_Text(pDX, IDC_EDIT1, m_name);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInputStationDlg, CDialog)
//{{AFX_MSG_MAP(CInputStationDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInputStationDlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?