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

📄 seldepdlg.cpp

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

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

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

/////////////////////////////////////////////////////////////////////////////
// seldepdlg dialog


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

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


void seldepdlg::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 seldepdlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(seldepdlg)
	DDX_Control(pDX, IDC_TREE1, m_tree);
	//}}AFX_DATA_MAP
}


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

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

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

// {14F10B00-EAB7-4A09-AD46-7434911C8C2D}
static const IID IID_Iseldepdlg =
{ 0x14f10b00, 0xeab7, 0x4a09, { 0xad, 0x46, 0x74, 0x34, 0x91, 0x1c, 0x8c, 0x2d } };

BEGIN_INTERFACE_MAP(seldepdlg, CDialog)
	INTERFACE_PART(seldepdlg, IID_Iseldepdlg, Dispatch)
END_INTERFACE_MAP()

/////////////////////////////////////////////////////////////////////////////
// seldepdlg message handlers

⌨️ 快捷键说明

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