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

📄 radondialogbox.cpp

📁 图像处理软件,功能比较基础
💻 CPP
字号:
// RadonDialogBox.cpp : implementation file
//

#include "stdafx.h"
#include "linjunjuan.h"
#include "RadonDialogBox.h"

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

/////////////////////////////////////////////////////////////////////////////
// RadonDialogBox dialog


RadonDialogBox::RadonDialogBox(CWnd* pParent /*=NULL*/)
	: CDialog(RadonDialogBox::IDD, pParent)
{
	//{{AFX_DATA_INIT(RadonDialogBox)
	m_step = 1;
	m_threshold = 100;
	//}}AFX_DATA_INIT
}


void RadonDialogBox::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(RadonDialogBox)
	DDX_Text(pDX, IDC_EDIT1, m_step);
	DDX_Text(pDX, IDC_THRESHOLD, m_threshold);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(RadonDialogBox, CDialog)
	//{{AFX_MSG_MAP(RadonDialogBox)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// RadonDialogBox message handlers

void RadonDialogBox::OnOK() 
{
	UpdateData(TRUE);	
	CDialog::OnOK();
}

⌨️ 快捷键说明

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