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

📄 biyeshejiview.cpp

📁 学籍管理系统 实现接单的学籍管理功能 主要是针对高中的
💻 CPP
字号:
// biyeshejiView.cpp : implementation of the CBiyeshejiView class
//

#include "stdafx.h"
#include "biyesheji.h"

#include "biyeshejiDoc.h"
#include "biyeshejiView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView

IMPLEMENT_DYNCREATE(CBiyeshejiView, CView)

BEGIN_MESSAGE_MAP(CBiyeshejiView, CView)
	//{{AFX_MSG_MAP(CBiyeshejiView)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView construction/destruction

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

}

CBiyeshejiView::~CBiyeshejiView()
{
}

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

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView drawing

void CBiyeshejiView::OnDraw(CDC* pDC)
{
	CBiyeshejiDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView printing

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView diagnostics

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CBiyeshejiView message handlers

⌨️ 快捷键说明

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