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

📄 depdlg3.cpp

📁 图书管理系统可进行查询,添加,修改,等操作 用树行结构为图书馆进行图书分类
💻 CPP
字号:
// depdlg3.cpp : implementation file
//

#include "stdafx.h"
#include "图书管理.h"
#include "depdlg3.h"

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

/////////////////////////////////////////////////////////////////////////////
// depdlg3 dialog


depdlg3::depdlg3(CWnd* pParent /*=NULL*/)
	: CDialog(depdlg3::IDD, pParent)
{
	EnableAutomation();

	//{{AFX_DATA_INIT(depdlg3)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void depdlg3::OnFinalRelease()
{
	// When the last reference for an automation object is released
	// OnFinalRelease is called.  The base class will automatically
	// deletes the object.  Add additional cleanup required for your
	// object before calling the base class.

	CDialog::OnFinalRelease();
}

void depdlg3::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(depdlg3)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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

BEGIN_DISPATCH_MAP(depdlg3, CDialog)
	//{{AFX_DISPATCH_MAP(depdlg3)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_DISPATCH_MAP
END_DISPATCH_MAP()

// Note: we add support for IID_Idepdlg3 to support typesafe binding
//  from VBA.  This IID must match the GUID that is attached to the 
//  dispinterface in the .ODL file.

// {005CFA4D-C118-4E87-A1A9-2D94D35156B5}
static const IID IID_Idepdlg3 =
{ 0x5cfa4d, 0xc118, 0x4e87, { 0xa1, 0xa9, 0x2d, 0x94, 0xd3, 0x51, 0x56, 0xb5 } };

BEGIN_INTERFACE_MAP(depdlg3, CDialog)
	INTERFACE_PART(depdlg3, IID_Idepdlg3, Dispatch)
END_INTERFACE_MAP()

/////////////////////////////////////////////////////////////////////////////
// depdlg3 message handlers

⌨️ 快捷键说明

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