📄 systemsetting.cpp
字号:
// SystemSetting.cpp : implementation file
//
#include "stdafx.h"
#include "SuperViseSystem.h"
#include "SystemSetting.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSystemSetting dialog
CSystemSetting::CSystemSetting(CWnd* pParent /*=NULL*/)
: CDialog(CSystemSetting::IDD, pParent)
{
//{{AFX_DATA_INIT(CSystemSetting)
m_iEncodeType = 0;
m_iopen = 0;
m_iX = 8;
m_iY = 2;
//}}AFX_DATA_INIT
}
void CSystemSetting::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSystemSetting)
DDX_Radio(pDX, IDC_CIF, m_iEncodeType);
DDX_Radio(pDX, IDC_TIME_OPEN, m_iopen);
DDX_Text(pDX, IDC_EDIT6, m_iX);
DDX_Text(pDX, IDC_EDIT7, m_iY);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSystemSetting, CDialog)
//{{AFX_MSG_MAP(CSystemSetting)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSystemSetting message handlers
BOOL CSystemSetting::OnInitDialog()
{
CDialog::OnInitDialog();
return TRUE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -