view.h

来自「版本更新了一下」· C头文件 代码 · 共 19 行

H
19
字号
////////////////////////////////////////////////////////////////
// MSDN -- August 2000
// If this code works, it was written by Paul DiLascia.
// If not, I don't know who wrote it.
// Compiles with Visual C++ 6.0, runs on Windows 98 and probably NT too.
//
#include "Doc.h"

class CMyView : public CEditView {
public:
	virtual ~CMyView();
	CMyDoc* GetDocument() { return (CMyDoc*)m_pDocument; }
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
protected:
	DECLARE_DYNCREATE(CMyView)
	CMyView();
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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