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

📄 dlgbuy.cpp

📁 课程设计自己写的一个汽车票管理系统用Visual C++实现的程序代码
💻 CPP
字号:
// DlgBuy.cpp : implementation file
//

#include "stdafx.h"
#include "cpgl.h"
#include "DlgBuy.h"


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

/////////////////////////////////////////////////////////////////////////////
// CDlgBuy dialog


CDlgBuy::CDlgBuy(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgBuy::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgBuy)
	m_ShowCC = _T("");
	m_ShowDate = _T("");
	m_ShowNum = _T("");
	m_ShowTime = _T("");
	m_ShowMoney = _T("");
	//}}AFX_DATA_INIT
}


void CDlgBuy::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgBuy)
	DDX_Text(pDX, IDC_Show_cc, m_ShowCC);
	DDX_Text(pDX, IDC_Show_date, m_ShowDate);
	DDX_Text(pDX, IDC_Show_num, m_ShowNum);
	DDX_Text(pDX, IDC_Show_time, m_ShowTime);
	DDX_Text(pDX, IDC_Show_money, m_ShowMoney);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDlgBuy message handlers

BOOL CDlgBuy::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here

	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

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