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

📄 character_motiondoc.cpp

📁 设置文字使文字在屏幕是运动,当运动到最右边,则另起一行重新运动
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -