setaddrdlg.cpp

来自「模拟了tec2000的所有功能」· C++ 代码 · 共 49 行

CPP
49
字号
// SetAddrDlg.cpp : implementation file
//

#include "stdafx.h"
#include "monitor.h"
#include "SetAddrDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSetAddrDlg dialog


CSetAddrDlg::CSetAddrDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CSetAddrDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSetAddrDlg)
	m_strStartAddr = _T("");
	m_strEndAddr = _T("");
	//}}AFX_DATA_INIT
}


void CSetAddrDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSetAddrDlg)
	DDX_Control(pDX, IDC_ENDADDRESS, m_ctrlEndAddr);
	DDX_Control(pDX, IDC_STARTADDRESS, m_ctrlStartAddr);
	DDX_Text(pDX, IDC_STARTADDRESS, m_strStartAddr);
	DDX_Text(pDX, IDC_ENDADDRESS, m_strEndAddr);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CSetAddrDlg, CDialog)
	//{{AFX_MSG_MAP(CSetAddrDlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSetAddrDlg message handlers

 

⌨️ 快捷键说明

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