dlgliu.cpp

来自「基于混沌序列的加密系统」· C++ 代码 · 共 51 行

CPP
51
字号
// DlgLiu.cpp : implementation file
//

#include "stdafx.h"
#include "ch1_1.h"
#include "DlgLiu.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgLiu dialog


CDlgLiu::CDlgLiu(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgLiu::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgLiu)
	m_nLiux = 0.0;
	m_nLiuy = 0.0;
	m_nLiuz = 0.0;
	//}}AFX_DATA_INIT
}


void CDlgLiu::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgLiu)
	DDX_Text(pDX, IDC_LIU_X, m_nLiux);
	DDV_MinMaxDouble(pDX, m_nLiux, 0., 3.);
	DDX_Text(pDX, IDC_LIU_Y, m_nLiuy);
	DDV_MinMaxDouble(pDX, m_nLiuy, 0., 3.);
	DDX_Text(pDX, IDC_LIU_Z, m_nLiuz);
	DDV_MinMaxDouble(pDX, m_nLiuz, 30., 40.);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDlgLiu message handlers

⌨️ 快捷键说明

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