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

📄 cigview.cpp

📁 在WinCe平台上开发的数据库管理程序,里面有一个可排序列表控件的实现和Excel的CVS文件的读写类
💻 CPP
字号:
// CIGView.cpp : implementation of the CCIGView class
//

#include "stdafx.h"
#include "CIG.h"

#include "CIGDoc.h"
#include "CIGView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CCIGView

IMPLEMENT_DYNCREATE(CCIGView, CView)

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

/////////////////////////////////////////////////////////////////////////////
// CCIGView construction/destruction

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

}

CCIGView::~CCIGView()
{
}

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

	return CView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CCIGView drawing

void CCIGView::OnDraw(CDC* pDC)
{
	CCIGDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);

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

/////////////////////////////////////////////////////////////////////////////
// CCIGView diagnostics

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CCIGView message handlers

void CCIGView::OnInitialUpdate() 
{
	CView::OnInitialUpdate();
}

⌨️ 快捷键说明

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