📄 setup.cpp
字号:
// Setup.cpp : implementation file
//
#include "stdafx.h"
#include "portpe.h"
#include "Setup.h"
extern CPortPeApp theApp;
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Setup dialog
CSetupParam::CSetupParam(CWnd* pParent /*=NULL*/)
: CDialog(CSetupParam::IDD, pParent)
{
//{{AFX_DATA_INIT(Setup)
m_first = _T("");
m_local = _T("");
m_second = _T("");
m_smsc = _T("");
m_special = _T("");
//}}AFX_DATA_INIT
}
void CSetupParam::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Setup)
DDX_Text(pDX, IDC_FIRST, m_first);
DDX_Text(pDX, IDC_LOCAL, m_local);
DDX_Text(pDX, IDC_SECOND, m_second);
DDX_Text(pDX, IDC_SMS, m_smsc);
DDX_Text(pDX, IDC_SPECIAL, m_special);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSetupParam, CDialog)
//{{AFX_MSG_MAP(Setup)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Setup message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -