📄 fifteen_dialog.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -