systemsetting.cpp
来自「此代码使用bmp图作为主要界面」· C++ 代码 · 共 58 行
CPP
58 行
// 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 + =
减小字号Ctrl + -
显示快捷键?