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

📄 dlgisodataset.cpp

📁 聚类算法研究
💻 CPP
字号:
// dlgIsodataset.cpp : implementation file
//

#include "stdafx.h"
#include "gqk_mini2.h"
#include "dlgIsodataset.h"

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

/////////////////////////////////////////////////////////////////////////////
// dlgIsodataset dialog


dlgIsodataset::dlgIsodataset(CWnd* pParent /*=NULL*/)
	: CDialog(dlgIsodataset::IDD, pParent)
{
	//{{AFX_DATA_INIT(dlgIsodataset)
	m_Dm = 1;
	m_Ds = 1;
	m_I = 6;
	m_K = 5;
	m_L = 1;
	m_Nmin = 1;
	//}}AFX_DATA_INIT
}


void dlgIsodataset::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(dlgIsodataset)
	DDX_Text(pDX, IDC_Dm, m_Dm);
	DDX_Text(pDX, IDC_Ds, m_Ds);
	DDX_Text(pDX, IDC_I, m_I);
	DDX_Text(pDX, IDC_K, m_K);
	DDX_Text(pDX, IDC_L, m_L);
	DDX_Text(pDX, IDC_Nmin, m_Nmin);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// dlgIsodataset message handlers

⌨️ 快捷键说明

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