bgcx.cpp
来自「快递管理系统 设计一个可以发送文件、接受文件的快递管理系统。」· C++ 代码 · 共 50 行
CPP
50 行
// bgcx.cpp : implementation file
//
#include "stdafx.h"
#include "cdw.h"
#include "bgcx.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Cbgcx dialog
Cbgcx::Cbgcx(CWnd* pParent /*=NULL*/)
: CDialog(Cbgcx::IDD, pParent)
{
//{{AFX_DATA_INIT(Cbgcx)
m_inbgnum = 0;
//}}AFX_DATA_INIT
}
void Cbgcx::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Cbgcx)
DDX_Text(pDX, IDC_NUMBER, m_inbgnum);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(Cbgcx, CDialog)
//{{AFX_MSG_MAP(Cbgcx)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Cbgcx message handlers
void Cbgcx::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?