neismoothdlg.cpp

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

CPP
63
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?