dlgbushou.cpp

来自「VC++编程技巧典型案例解析——基础与应用」· C++ 代码 · 共 44 行

CPP
44
字号
// DlgBushou.cpp : implementation file
//

#include "stdafx.h"
#include "findhz.h"
#include "DlgBushou.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDlgBushou dialog


CDlgBushou::CDlgBushou(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgBushou::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgBushou)
	m_BuShou = _T("");
	//}}AFX_DATA_INIT
}


void CDlgBushou::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgBushou)
	DDX_Text(pDX, IDC_EDIT1, m_BuShou);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDlgBushou message handlers

⌨️ 快捷键说明

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