birthdaydlg.cpp

来自「功能建立家谱」· C++ 代码 · 共 48 行

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

#include "stdafx.h"
#include "familytree.h"
#include "BirthdayDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CBirthdayDlg dialog


CBirthdayDlg::CBirthdayDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CBirthdayDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CBirthdayDlg)
	m_birthday_day = 0;
	m_birthday_month = 0;
	//}}AFX_DATA_INIT
	//}}AFX_DATA_INIT
}


void CBirthdayDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CBirthdayDlg)
	// NOTE: the ClassWizard will add DDX and DDV calls here
	DDX_Text(pDX, IDC_EDIT_BIRTHDAY_DAY, m_birthday_day);
	DDX_Text(pDX, IDC_EDIT_BIRTHDAY_MONTH, m_birthday_month);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CBirthdayDlg message handlers

⌨️ 快捷键说明

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