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

📄 dialogofalldirections.cpp

📁 这是关于飞机生存力计算软件
💻 CPP
字号:
// DialogOfAllDirections.cpp : implementation file
//

#include "stdafx.h"
#include "Simulate.h"
#include "DialogOfAllDirections.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDialogOfAllDirections dialog


CDialogOfAllDirections::CDialogOfAllDirections(CWnd* pParent /*=NULL*/)
	: CDialog(CDialogOfAllDirections::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDialogOfAllDirections)
	m_fAlfa1 = 0.0f;
	m_fAlfa2 = 0.0f;
	m_fCita = 0.0f;
	m_fVf = 0.0f;
	m_fVm = 0.0f;
	m_fVt = 0.0f;
	m_nYScanLines = 0;
	m_nIntervals = 0;
	m_fMinDistance = 0.0f;
	m_fMaxDistance = 0.0f;
	//}}AFX_DATA_INIT
}


void CDialogOfAllDirections::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDialogOfAllDirections)
	DDX_Text(pDX, IDC_EDIT_ALFA1, m_fAlfa1);
	DDX_Text(pDX, IDC_EDIT_ALFA2, m_fAlfa2);
	DDX_Text(pDX, IDC_EDIT_CITA, m_fCita);
	DDX_Text(pDX, IDC_EDIT_VF, m_fVf);
	DDX_Text(pDX, IDC_EDIT_VM, m_fVm);
	DDX_Text(pDX, IDC_EDIT_VT, m_fVt);
	DDX_Text(pDX, IDC_EDIT_YSCANLINES, m_nYScanLines);
	DDV_MinMaxInt(pDX, m_nYScanLines, 50, 9999);
	DDX_Text(pDX, IDC_EDIT_INTERVALS, m_nIntervals);
	DDV_MinMaxInt(pDX, m_nIntervals, 1, 9999);
	DDX_Text(pDX, IDC_EDIT_MINDISTANCE, m_fMinDistance);
	DDV_MinMaxFloat(pDX, m_fMinDistance, 0.f, 1.e+006f);
	DDX_Text(pDX, IDC_EDIT_MAXDISTANCE, m_fMaxDistance);
	DDV_MinMaxFloat(pDX, m_fMaxDistance, 0.f, 1.e+006f);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDialogOfAllDirections message handlers

⌨️ 快捷键说明

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