customernamedlg.cpp

来自「打印发票程序」· C++ 代码 · 共 46 行

CPP
46
字号
// CustomerNameDlg.cpp : implementation file
//

#include "stdafx.h"
#include "invoice.h"
#include "CustomerNameDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCustomerNameDlg dialog


CCustomerNameDlg::CCustomerNameDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CCustomerNameDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CCustomerNameDlg)
	m_CustomerName = _T("");
	m_BossName = _T("");
	//}}AFX_DATA_INIT
}


void CCustomerNameDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CCustomerNameDlg)
	DDX_Text(pDX, IDC_CUSTOMER_NAME_EDIT, m_CustomerName);
	DDX_Text(pDX, IDC_BOSS_NAME_EDIT, m_BossName);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CCustomerNameDlg message handlers

⌨️ 快捷键说明

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