dingdan.cpp

来自「这是一个简单的酒店管理系统」· C++ 代码 · 共 64 行

CPP
64
字号
// DingDan.cpp : implementation file
//

#include "stdafx.h"
#include "shujuku.h"
#include "DingDan.h"
#include "ShuJuKuDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDingDan dialog


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


void CDingDan::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDingDan)
	DDX_Text(pDX, IDC_Show, m_Show);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDingDan, CDialog)
	//{{AFX_MSG_MAP(CDingDan)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDingDan message handlers

//DEL BOOL CDingDan::OnInitDialog() 
//DEL {
//DEL 	CDialog::OnInitDialog();
//DEL 	
//DEL 	// TODO: Add extra initialization here
//DEL 	m_CusName=CusName;
//DEL 	UpdateData(false);
//DEL 
//DEL //	MessageBox(CusName);
//DEL 
//DEL 	m_Room=RoomName;
//DEL 	UpdateData(false);
//DEL //	MessageBox(HolName);
//DEL 
//DEL 	m_HolName=HolName;
//DEL 	UpdateData(false);
//DEL 	return TRUE;  // return TRUE unless you set the focus to a control
//DEL 	              // EXCEPTION: OCX Property Pages should return FALSE
//DEL }

⌨️ 快捷键说明

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