book.cpp

来自「这是一个图书馆管理系统程序」· C++ 代码 · 共 61 行

CPP
61
字号
// book.cpp : implementation file
//

#include "stdafx.h"
#include "k.h"
#include "book.h"

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

/////////////////////////////////////////////////////////////////////////////
// book dialog


book::book(CWnd* pParent /*=NULL*/)
	: CDialog(book::IDD, pParent)
{
	//{{AFX_DATA_INIT(book)
	m_1111 = _T("");
	m_2222 = _T("");
	m_3333 = 0.0;
	m_4444 = 0;
	//}}AFX_DATA_INIT
}


void book::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(book)
	DDX_Text(pDX, IDC_1111, m_1111);
	DDX_Text(pDX, IDC_2222, m_2222);
	DDX_Text(pDX, IDC_3333, m_3333);
	DDX_Text(pDX, IDC_4444, m_4444);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(book, CDialog)
	//{{AFX_MSG_MAP(book)
	ON_EN_CHANGE(IDC_3333, OnChange3333)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// book message handlers

void book::OnChange3333() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CDialog::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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