📄 normalfrequentdlg.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -