📄 pendulumvalue.cpp
字号:
// PendulumValue.cpp : implementation file
//
#include "stdafx.h"
#include "UseDoublePendulum.h"
#include "PendulumValue.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPendulumValue dialog
CPendulumValue::CPendulumValue(CWnd* pParent /*=NULL*/)
: CDialog(CPendulumValue::IDD, pParent)
{
//{{AFX_DATA_INIT(CPendulumValue)
m_strPendulumValue = _T("");
//}}AFX_DATA_INIT
}
void CPendulumValue::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPendulumValue)
DDX_Text(pDX, IDC_EDIT1, m_strPendulumValue);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPendulumValue, CDialog)
//{{AFX_MSG_MAP(CPendulumValue)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPendulumValue message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -