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

📄 borrow.cpp

📁 这是一个图书馆管理系统程序
💻 CPP
字号:
// borrow.cpp : implementation file
//

#include "stdafx.h"
#include "k.h"
#include "borrow.h"

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

/////////////////////////////////////////////////////////////////////////////
// borrow dialog


borrow::borrow(CWnd* pParent /*=NULL*/)
	: CDialog(borrow::IDD, pParent)
{
	//{{AFX_DATA_INIT(borrow)
	m_2 = _T("");
	m_1 = 0.0;
	m_3 = 0;
	//}}AFX_DATA_INIT
}


void borrow::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(borrow)
	DDX_Text(pDX, IDC_2, m_2);
	DDX_Text(pDX, IDC_1, m_1);
	DDX_Text(pDX, IDC_3, m_3);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(borrow, CDialog)
	//{{AFX_MSG_MAP(borrow)
	ON_EN_CHANGE(IDC_1, OnChange1)
	ON_EN_CHANGE(IDC_2, OnChange2)
	ON_EN_CHANGE(IDC_3, OnChange3)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// borrow message handlers

void borrow::OnChange1() 
{
	// 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
	
}

void borrow::OnChange2() 
{
	// 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
	
}

void borrow::OnChange3() 
{
	// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -