fifteen_dialog.cpp

来自「对医院的药品进行管理」· C++ 代码 · 共 48 行

CPP
48
字号
// fifteen_dialog.cpp : implementation file
//

#include "stdafx.h"
#include "医药管理系统.h"
#include "fifteen_dialog.h"

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

/////////////////////////////////////////////////////////////////////////////
// fifteen_dialog dialog


fifteen_dialog::fifteen_dialog(CWnd* pParent /*=NULL*/)
	: CDialog(fifteen_dialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(fifteen_dialog)
	m_NeedMoney = _T("");
	m_AcceptMoney = _T("");
	m_BackMoney = _T("");
	//}}AFX_DATA_INIT
}


void fifteen_dialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(fifteen_dialog)
	DDX_Text(pDX, IDC_EDIT1, m_NeedMoney);
	DDX_Text(pDX, IDC_EDIT2, m_AcceptMoney);
	DDX_Text(pDX, IDC_EDIT3, m_BackMoney);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// fifteen_dialog message handlers

⌨️ 快捷键说明

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