?? setcycledlg.cpp
字號:
// SetCycleDlg.cpp : implementation file
//
#include "stdafx.h"
#include "calculator.h"
#include "SetCycleDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSetCycleDlg dialog
CSetCycleDlg::CSetCycleDlg(CWnd* pParent /*=NULL*/)
: CDialog(CSetCycleDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CSetCycleDlg)
m_nCount = 1000;
m_nType = 0;
//}}AFX_DATA_INIT
}
void CSetCycleDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSetCycleDlg)
DDX_Text(pDX, IDC_EDIT_COUNT, m_nCount);
DDV_MinMaxUInt(pDX, m_nCount, 1, 10000000);
DDX_Radio(pDX, IDC_RADIO1, m_nType);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSetCycleDlg, CDialog)
//{{AFX_MSG_MAP(CSetCycleDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSetCycleDlg message handlers
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -