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

📄 splashview.cpp

📁 wince WM5 loading等待窗口源码
💻 CPP
字号:
// SplashView.cpp : implementation of the CSplashView class
//
#include "stdafx.h"
#include "Splash.h"
#include "SplashDoc.h"
#include "SplashView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSplashView

IMPLEMENT_DYNCREATE(CSplashView, CView)

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

/////////////////////////////////////////////////////////////////////////////
// CSplashView construction/destruction

CSplashView::CSplashView()
{
	// TODO: add construction code here
}

CSplashView::~CSplashView()
{
}

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

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CSplashView drawing

void CSplashView::OnDraw(CDC* pDC)
{
	CSplashDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);

	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CSplashView diagnostics

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CSplashView message handlers

⌨️ 快捷键说明

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