depdlg2.cpp

来自「图书管理系统可进行查询,添加,修改,等操作 用树行结构为图书馆进行图书分类」· C++ 代码 · 共 74 行

CPP
74
字号
// depdlg2.cpp : implementation file
//

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

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

/////////////////////////////////////////////////////////////////////////////
// depdlg2 dialog


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

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


void depdlg2::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 depdlg2::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(depdlg2)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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

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

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

// {0C2B52B2-77DD-4C55-9A7D-5FC05B8F34A1}
static const IID IID_Idepdlg2 =
{ 0xc2b52b2, 0x77dd, 0x4c55, { 0x9a, 0x7d, 0x5f, 0xc0, 0x5b, 0x8f, 0x34, 0xa1 } };

BEGIN_INTERFACE_MAP(depdlg2, CDialog)
	INTERFACE_PART(depdlg2, IID_Idepdlg2, Dispatch)
END_INTERFACE_MAP()

/////////////////////////////////////////////////////////////////////////////
// depdlg2 message handlers

⌨️ 快捷键说明

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