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

📄 ex25dvw.h

📁 visual c++技术内幕范例的源代码
💻 H
字号:
// ex25dvw.h : interface of the CEx25dView class
//
/////////////////////////////////////////////////////////////////////////////

class CEx25dView : public CView
{
private:
	static const int nX[60];
	static const int nY[60];
	CFont m_font;

protected: // create from serialization only
	CEx25dView();
	DECLARE_DYNCREATE(CEx25dView)

// Attributes
public:
	CEx25dDoc* GetDocument();

// Operations
public:

// Implementation
public:
	virtual ~CEx25dView();
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CEx25dView)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in ex25dvw.cpp
inline CEx25dDoc* CEx25dView::GetDocument()
   { return (CEx25dDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

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