paradialog.cpp

来自「实现了二维数据的K均值算法以及ISODATA分类算法」· C++ 代码 · 共 54 行

CPP
54
字号
// ParaDialog.cpp : implementation file
//

#include "stdafx.h"
#include "200532590150.h"
#include "ParaDialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// CParaDialog dialog


CParaDialog::CParaDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CParaDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CParaDialog)
	m_7 = 0;
	m_8 = 0;
	m_9 = 0.0;
	m_10 = 0.0;
	m_11 = 0;
	m_12 = 0;
	//}}AFX_DATA_INIT
}


void CParaDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CParaDialog)
	DDX_Text(pDX, IDC_EDIT7, m_7);
	DDX_Text(pDX, IDC_EDIT8, m_8);
	DDX_Text(pDX, IDC_EDIT9, m_9);
	DDX_Text(pDX, IDC_EDIT10, m_10);
	DDX_Text(pDX, IDC_EDIT11, m_11);
	DDX_Text(pDX, IDC_EDIT12, m_12);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CParaDialog message handlers

⌨️ 快捷键说明

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