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

📄 dlgmode.cpp

📁 3D reconstruction, medical image processing from colons, using intel image processing for based clas
💻 CPP
字号:
// DlgMode.cpp : implementation file//#include "stdafx.h"#include "fusion.h"#include "DlgMode.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CDlgMode dialogCDlgMode::CDlgMode(CWnd* pParent /*=NULL*/)	: CDialog(CDlgMode::IDD, pParent){	//{{AFX_DATA_INIT(CDlgMode)	m_nTransMode = 1;	m_nDistanceMapMode = 0;	m_nDilationMode = 1;	m_bSaveDicom = FALSE;	m_nLungRenderMode = 0;	m_nIRMode = 0;	m_R1 = 0;	m_R2 = 0;	m_R3 = 0;	m_R4 = 0;	//}}AFX_DATA_INIT}void CDlgMode::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);	//{{AFX_DATA_MAP(CDlgMode)	DDX_Radio(pDX, IDC_RADIO1, m_nTransMode);	DDX_Radio(pDX, IDC_RADIO11, m_nDistanceMapMode);	DDX_Radio(pDX, IDC_RADIO14, m_nDilationMode);	DDX_Check(pDX, IDC_CHECK1, m_bSaveDicom);	DDX_Radio(pDX, IDC_RADIO16, m_nLungRenderMode);	DDX_Radio(pDX, IDC_RADIO20, m_nIRMode);	DDX_Text(pDX, IDC_EDIT1, m_R1);	DDX_Text(pDX, IDC_EDIT2, m_R2);	DDX_Text(pDX, IDC_EDIT3, m_R3);	DDX_Text(pDX, IDC_EDIT4, m_R4);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CDlgMode, CDialog)	//{{AFX_MSG_MAP(CDlgMode)		// NOTE: the ClassWizard will add message map macros here	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CDlgMode message handlers

⌨️ 快捷键说明

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