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

📄 zhouyongview.cpp

📁 1、 设计内容 设计一个个人日常记账系统:含编号、科目分类(费用分类)、摘要、金额、日期、是收入还是支出、备注等内容。 要求: 1、设计所需的数据
💻 CPP
字号:
// zhouyongView.cpp : implementation of the CZhouyongView class
//

#include "stdafx.h"
#include "zhouyong.h"

#include "zhouyongDoc.h"
#include "zhouyongView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView

IMPLEMENT_DYNCREATE(CZhouyongView, CView)

BEGIN_MESSAGE_MAP(CZhouyongView, CView)
	//{{AFX_MSG_MAP(CZhouyongView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView construction/destruction

CZhouyongView::CZhouyongView()
{
	// TODO: add construction code here

}

CZhouyongView::~CZhouyongView()
{
}

BOOL CZhouyongView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView drawing

void CZhouyongView::OnDraw(CDC* pDC)
{
	CZhouyongDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
	int y=0;
	for(int nIndex=0;nIndex<pDoc->GetAllRecNum();nIndex++)
	{
		pDoc->GetZhouInfoAt(nIndex)->Display(y,pDC);
		y+=16;
	}
}

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView printing

BOOL CZhouyongView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CZhouyongView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CZhouyongView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView diagnostics

#ifdef _DEBUG
void CZhouyongView::AssertValid() const
{
	CView::AssertValid();
}

void CZhouyongView::Dump(CDumpContext& dc) const
{
	CView::Dump(dc);
}

CZhouyongDoc* CZhouyongView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CZhouyongDoc)));
	return (CZhouyongDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CZhouyongView message handlers

⌨️ 快捷键说明

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