📄 propertiesdlg.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -