normalfrequentdlg.cpp

来自「哥们图像增强技术的毕业设计」· C++ 代码 · 共 52 行

CPP
52
字号
// NormalFrequentDlg.cpp : implementation file
//

#include "stdafx.h"
#include "图像增强技术.h"
#include "NormalFrequentDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CNormalFrequentDlg dialog


CNormalFrequentDlg::CNormalFrequentDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CNormalFrequentDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CNormalFrequentDlg)
	m_fNormalFrequent = 0.0f;
	m_iSize = 0;
	//}}AFX_DATA_INIT
}


void CNormalFrequentDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CNormalFrequentDlg)
	DDX_Text(pDX, IDC_NORMALFREQUENT, m_fNormalFrequent);
	DDX_Text(pDX, IDC_WINSIZE, m_iSize);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CNormalFrequentDlg message handlers

void CNormalFrequentDlg::OnCancel() 
{
	// TODO: Add extra cleanup here
	
	CDialog::OnCancel();
}

⌨️ 快捷键说明

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