frmviewcontainer.cpp

来自「本人买的<<VC++项目开发实例>>源代码配套光盘.」· C++ 代码 · 共 68 行

CPP
68
字号
// FrmViewContainer.cpp : implementation file
//

#include "stdafx.h"
#include "DBExp.h"
#include "FrmViewContainer.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFrmViewContainer

IMPLEMENT_DYNCREATE(CFrmViewContainer, CFormView)

//##ModelId=3C5CC9C7005F
CFrmViewContainer::CFrmViewContainer()
	: CFormView(CFrmViewContainer::IDD)
{
	//{{AFX_DATA_INIT(CFrmViewContainer)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

//##ModelId=3C5CC9C7007E
CFrmViewContainer::~CFrmViewContainer()
{
}

//##ModelId=3C5CC9C70060
void CFrmViewContainer::DoDataExchange(CDataExchange* pDX)
{
	CFormView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CFrmViewContainer)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CFrmViewContainer, CFormView)
	//{{AFX_MSG_MAP(CFrmViewContainer)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFrmViewContainer diagnostics

#ifdef _DEBUG
//##ModelId=3C5CC9C70087
void CFrmViewContainer::AssertValid() const
{
	CFormView::AssertValid();
}

//##ModelId=3C5CC9C70089
void CFrmViewContainer::Dump(CDumpContext& dc) const
{
	CFormView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CFrmViewContainer message handlers

⌨️ 快捷键说明

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