📄 setsty.cpp
字号:
// setSty.cpp : implementation file
//
#include "stdafx.h"
#include "SetColorSty.h"
#include "setSty.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CsetSty dialog
CsetSty::CsetSty(CWnd* pParent /*=NULL*/)
: CDialog(CsetSty::IDD, pParent)
{
//{{AFX_DATA_INIT(CsetSty)
m_fst = FALSE;
m_scd = FALSE;
m_thr = FALSE;
m_fstx = 0;
m_fstw = 0;
m_fsth = 0;
m_fsty = 0;
m_scdh = 0;
m_scdw = 0;
m_scdx = 0;
m_scdy = 0;
m_thrh = 0;
m_thrw = 0;
m_thrx = 0;
m_thry = 0;
m_winH = 0;
m_winW = 0;
m_winX = 0;
m_winY = 0;
//}}AFX_DATA_INIT
}
void CsetSty::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CsetSty)
DDX_Check(pDX, IDC_CHECK_FST, m_fst);
DDX_Check(pDX, IDC_CHECK_SCD, m_scd);
DDX_Check(pDX, IDC_CHECK_THR, m_thr);
DDX_Text(pDX, IDC_EDIT_FSTX, m_fstx);
DDX_Text(pDX, IDC_EDIT_FSTW, m_fstw);
DDX_Text(pDX, IDC_EDIT_FSTH, m_fsth);
DDX_Text(pDX, IDC_EDIT_FSTY, m_fsty);
DDX_Text(pDX, IDC_EDIT_SCDH, m_scdh);
DDX_Text(pDX, IDC_EDIT_SCDW, m_scdw);
DDX_Text(pDX, IDC_EDIT_SCDX, m_scdx);
DDX_Text(pDX, IDC_EDIT_SCDY, m_scdy);
DDX_Text(pDX, IDC_EDIT_THRH, m_thrh);
DDX_Text(pDX, IDC_EDIT_THRW, m_thrw);
DDX_Text(pDX, IDC_EDIT_THRX, m_thrx);
DDX_Text(pDX, IDC_EDIT_THRY, m_thry);
DDX_Text(pDX, IDC_EDIT_WINH, m_winH);
DDX_Text(pDX, IDC_EDIT_WINW, m_winW);
DDX_Text(pDX, IDC_EDIT_WINX, m_winX);
DDX_Text(pDX, IDC_EDIT_WINY, m_winY);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CsetSty, CDialog)
//{{AFX_MSG_MAP(CsetSty)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CsetSty message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -