⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chushizhidia.cpp

📁 倒立摆可以倒来倒去
💻 CPP
字号:
// ChushizhiDia.cpp : implementation file
//

#include "stdafx.h"
#include "Daolibai.h"
#include "ChushizhiDia.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CChushizhiDia dialog


CChushizhiDia::CChushizhiDia(CWnd* pParent /*=NULL*/)
	: CDialog(CChushizhiDia::IDD, pParent)
{
	//{{AFX_DATA_INIT(CChushizhiDia)
	m_X1 = 0.0;
	m_X2 = 0.0;
	//}}AFX_DATA_INIT
}


void CChushizhiDia::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CChushizhiDia)
	DDX_Text(pDX, IDC_X1, m_X1);
	DDV_MinMaxDouble(pDX, m_X1, -5., 5.);
	DDX_Text(pDX, IDC_X2, m_X2);
	DDV_MinMaxDouble(pDX, m_X2, -10., 10.);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CChushizhiDia, CDialog)
	//{{AFX_MSG_MAP(CChushizhiDia)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChushizhiDia message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -