📄 neismoothdlg.cpp
字号:
// NeiSmoothDlg.cpp : implementation file
//
#include "stdafx.h"
#include "图像增强技术.h"
#include "NeiSmoothDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CNeiSmoothDlg dialog
CNeiSmoothDlg::CNeiSmoothDlg(CWnd* pParent /*=NULL*/)
: CDialog(CNeiSmoothDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CNeiSmoothDlg)
m_iLinyuHigth = 0;
m_iLinyuWidth = 0;
m_iLinyux = 0;
m_iLinyuy = 0;
//}}AFX_DATA_INIT
}
void CNeiSmoothDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CNeiSmoothDlg)
DDX_Text(pDX, IDC_LINYU_HIGTH, m_iLinyuHigth);
DDX_Text(pDX, IDC_LINYU_WIDTH, m_iLinyuWidth);
DDX_Text(pDX, IDC_LINYU_X, m_iLinyux);
DDX_Text(pDX, IDC_LINYU_Y, m_iLinyuy);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CNeiSmoothDlg, CDialog)
//{{AFX_MSG_MAP(CNeiSmoothDlg)
ON_BN_CLICKED(IDC_QUEDING, OnQueding)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNeiSmoothDlg message handlers
void CNeiSmoothDlg::OnQueding()
{
// TODO: Add your control notification handler code here
OnOK();
}
void CNeiSmoothDlg::OnCancel()
{
// TODO: Add extra cleanup here
CDialog::OnCancel();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -