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

📄 patientdlg.cpp

📁 《医学图象的远程传输系统》
💻 CPP
字号:
// PatientDlg.cpp : implementation file
//

#include "stdafx.h"
#include "Enroll.h"
#include "PatientDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPatientDlg dialog


CPatientDlg::CPatientDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CPatientDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CPatientDlg)
	m_sName = _T("");
	m_bGender = _T("");
	m_sAddress = _T("");
	m_sPhone = _T("");
	m_sDisease = _T("");
	m_sMemo = _T("");
	//}}AFX_DATA_INIT
}


void CPatientDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPatientDlg)
	DDX_Text(pDX, IDC_EDIT1, m_sName);
	DDX_Text(pDX, IDC_EDIT2, m_bGender);
	DDX_Text(pDX, IDC_EDIT3, m_sAddress);
	DDX_Text(pDX, IDC_EDIT4, m_sPhone);
	DDX_Text(pDX, IDC_EDIT5, m_sDisease);
	DDX_Text(pDX, IDC_EDIT6, m_sMemo);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CPatientDlg message handlers

⌨️ 快捷键说明

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