viewtwo.h

来自「Visual C++下的界面设计」· C头文件 代码 · 共 42 行

H
42
字号
// viewTwo.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CviewTwo view

class CviewTwo : public CView
{
protected:
	CviewTwo();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CviewTwo)

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CviewTwo)
	protected:
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view
	//}}AFX_VIRTUAL

// Implementation
protected:
	virtual ~CviewTwo();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

	// Generated message map functions
protected:
	//{{AFX_MSG(CviewTwo)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

⌨️ 快捷键说明

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