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

📄 miscparams.cpp

📁 HMMD有关资源。大家可以看一下。或许有帮助哦!都是我下载的。
💻 CPP
字号:
// MiscParams.cpp : implementation file
//

#include "stdafx.h"
#include "hmmdemo.h"
#include "MiscParams.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMiscParams property page

IMPLEMENT_DYNCREATE(CMiscParams, CPropertyPage)

CMiscParams::CMiscParams() : CPropertyPage(CMiscParams::IDD)
{
	//{{AFX_DATA_INIT(CMiscParams)
	m_FixedWidth = 0;
	m_FixedHeight = 0;
	m_useHeight = FALSE;
	m_useWidth = FALSE;
	m_SuppressIntensity = FALSE;
	//}}AFX_DATA_INIT
}

CMiscParams::~CMiscParams()
{
}

void CMiscParams::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMiscParams)
	DDX_Text(pDX, IDC_FIX_WIDTH, m_FixedWidth);
	DDX_Text(pDX, IDC_FIX_HEIGHT, m_FixedHeight);
	DDX_Check(pDX, IDC_TO_HEIGHT, m_useHeight);
	DDX_Check(pDX, IDC_TO_WIDTH, m_useWidth);
	DDX_Check(pDX, IDC_SUPPRESS_INTENSITY, m_SuppressIntensity);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CMiscParams message handlers

⌨️ 快捷键说明

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