character_motiondoc.cpp

来自「设置文字使文字在屏幕是运动,当运动到最右边,则另起一行重新运动」· C++ 代码 · 共 86 行

CPP
86
字号
// character_motionDoc.cpp : implementation of the CCharacter_motionDoc class
//

#include "stdafx.h"
#include "character_motion.h"

#include "character_motionDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCharacter_motionDoc

IMPLEMENT_DYNCREATE(CCharacter_motionDoc, CDocument)

BEGIN_MESSAGE_MAP(CCharacter_motionDoc, CDocument)
	//{{AFX_MSG_MAP(CCharacter_motionDoc)
		// 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
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCharacter_motionDoc construction/destruction

CCharacter_motionDoc::CCharacter_motionDoc()
{
	// TODO: add one-time construction code here

}

CCharacter_motionDoc::~CCharacter_motionDoc()
{
}

BOOL CCharacter_motionDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
		CDocument::SetTitle("200626380101--陈相镇--数字媒体061");

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CCharacter_motionDoc serialization

void CCharacter_motionDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CCharacter_motionDoc diagnostics

#ifdef _DEBUG
void CCharacter_motionDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CCharacter_motionDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CCharacter_motionDoc commands

⌨️ 快捷键说明

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