propertiesdlg.cpp
来自「本程序使用Visual C++6.0编写」· C++ 代码 · 共 58 行
CPP
58 行
// PropertiesDlg.cpp : implementation file
//
#include "stdafx.h"
#include "Sjsys.h"
#include "PropertiesDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPropertiesDlg dialog
CPropertiesDlg::CPropertiesDlg(CWnd* pParent /*=NULL*/)
: CDialog(CPropertiesDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CPropertiesDlg)
m_DeviceNameEdit = _T("");
m_MacAddressEdit = _T("");
m_IPAddressEdit = _T("");
m_EmployeeName = _T("");
m_SubDepartmentName = _T("");
m_Config = _T("");
m_StartDate = _T("");
m_Type = _T("");
//}}AFX_DATA_INIT
}
void CPropertiesDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPropertiesDlg)
DDX_Text(pDX, IDC_DeviceNameEdit, m_DeviceNameEdit);
DDX_Text(pDX, IDC_MacAdressEdit, m_MacAddressEdit);
DDX_Text(pDX, IDC_IPAdressEdit, m_IPAddressEdit);
DDX_Text(pDX, IDC_EmployeeNameEdit, m_EmployeeName);
DDX_Text(pDX, IDC_SubDepartmentEdit, m_SubDepartmentName);
DDX_Text(pDX, IDC_ConfigDisplay, m_Config);
DDX_Text(pDX, IDC_StartDateDisplay, m_StartDate);
DDX_Text(pDX, IDC_TypeDisplay, m_Type);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPropertiesDlg, CDialog)
//{{AFX_MSG_MAP(CPropertiesDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPropertiesDlg message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?