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

📄 posdiag.cpp

📁 上述是VIsualc++ 数字图像处理一书的源码
💻 CPP
字号:
// POSDiag.cpp : implementation file
//

#include "stdafx.h"
#include "Video Demo.h"
#include "POSDiag.h"

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

/////////////////////////////////////////////////////////////////////////////
// POSDiag dialog


POSDiag::POSDiag(CWnd* pParent /*=NULL*/)
	: CDialog(POSDiag::IDD, pParent)
{
	//{{AFX_DATA_INIT(POSDiag)
	m_x = 170;
	m_y = 100;
	m_width = 20;
	m_height = 60;
	//}}AFX_DATA_INIT
}


void POSDiag::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(POSDiag)
	DDX_Text(pDX, IDC_EDIT1, m_x);
	DDX_Text(pDX, IDC_EDIT2, m_y);
	DDX_Text(pDX, IDC_EDIT3, m_width);
	DDX_Text(pDX, IDC_EDIT4, m_height);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(POSDiag, CDialog)
	//{{AFX_MSG_MAP(POSDiag)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// POSDiag message handlers

⌨️ 快捷键说明

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