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

📄 family.cpp

📁 一个非常简单地址簿程序
💻 CPP
字号:
// Family.cpp : implementation file
//

#include "stdafx.h"
#include "MyAL.h"
#include "Family.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFamily dialog


CFamily::CFamily(CWnd* pParent /*=NULL*/)
	: CDialog(CFamily::IDD, pParent)
{
	//{{AFX_DATA_INIT(CFamily)
	m_strCity = _T("");
	m_strCountry = _T("");
	m_strLeaguer = _T("");
	m_strPostalcode = _T("");
	m_strProvince = _T("");
	m_strStreet = _T("");
	m_strTelephone = _T("");
	//}}AFX_DATA_INIT
}


void CFamily::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CFamily)
	DDX_CBString(pDX, IDC_CITY, m_strCity);
	DDX_CBString(pDX, IDC_COUNTRY, m_strCountry);
	DDX_Text(pDX, IDC_LEAGUER, m_strLeaguer);
	DDX_Text(pDX, IDC_POSTALCODE, m_strPostalcode);
	DDX_CBString(pDX, IDC_PROVINCE, m_strProvince);
	DDX_Text(pDX, IDC_STREET, m_strStreet);
	DDX_Text(pDX, IDC_TELEPHONE, m_strTelephone);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CFamily message handlers

void CFamily::OnOK() 
{
}

void CFamily::OnCancel() 
{
}

⌨️ 快捷键说明

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