📄 input.cpp
字号:
// Input.cpp : implementation file
//
#include "stdafx.h"
#include "083007_NA.h"
#include "Input.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInput dialog
CInput::CInput(CWnd* pParent /*=NULL*/)
: CDialog(CInput::IDD, pParent)
{
//{{AFX_DATA_INIT(CInput)
m_A1 = 1;
m_B1 = 2;
m_CHUZHI = -0.5;
m_WUCHA = 0.00005;
//}}AFX_DATA_INIT
}
void CInput::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInput)
DDX_Text(pDX, IDC_A1, m_A1);
DDV_MinMaxInt(pDX, m_A1, -10, 10);
DDX_Text(pDX, IDC_B1, m_B1);
DDV_MinMaxInt(pDX, m_B1, -10, 10);
DDX_Text(pDX, IDC_CHUZI, m_CHUZHI);
DDX_Text(pDX, IDC_WUCHA, m_WUCHA);
DDV_MinMaxFloat(pDX, m_WUCHA, 1.e-005f, 1.e-002f);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInput, CDialog)
//{{AFX_MSG_MAP(CInput)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInput message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -