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

📄 dlgpresetotf.cpp

📁 3D reconstruction, medical image processing from colons, using intel image processing for based clas
💻 CPP
字号:
// DlgPresetOTF.cpp : implementation file//#include "stdafx.h"#include "fusion.h"#include "DlgPresetOTF.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// RxDlgPresetOTF dialogRxDlgPresetOTF::RxDlgPresetOTF(CWnd* pParent /*=NULL*/)	: RxDlgCommon(pParent){	//{{AFX_DATA_INIT(RxDlgPresetOTF)		// NOTE: the ClassWizard will add member initialization here	//}}AFX_DATA_INIT	m_strCaption		= "OTF Preset";}BEGIN_MESSAGE_MAP(RxDlgPresetOTF, RxDlgCommon)	//{{AFX_MSG_MAP(RxDlgPresetOTF)	ON_WM_CREATE()	ON_WM_DESTROY()	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// RxDlgPresetOTF message handlersBOOL RxDlgPresetOTF::OnInitDialog() {	RxDlgCommon::OnInitDialog();		// TODO: Add extra initialization here		return TRUE;  // return TRUE unless you set the focus to a control	              // EXCEPTION: OCX Property Pages should return FALSE}int RxDlgPresetOTF::OnCreate(LPCREATESTRUCT lpCreateStruct) {	if (RxDlgCommon::OnCreate(lpCreateStruct) == -1)		return -1;		// TODO: Add your specialized creation code here		return 0;}void RxDlgPresetOTF::OnDestroy() {	RxDlgCommon::OnDestroy();		// TODO: Add your message handler code here	}BOOL RxDlgPresetOTF::PreTranslateMessage(MSG* pMsg) {	// TODO: Add your specialized code here and/or call the base class		return RxDlgCommon::PreTranslateMessage(pMsg);}void RxDlgPresetOTF::OnDraw(CDC *pDC){	RxDlgCommon::OnDraw(pDC);}

⌨️ 快捷键说明

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