wzdtview.h

来自「MFC扩展编程实例」· C头文件 代码 · 共 64 行

H
64
字号
#if !defined(AFX_WZDTABBEDVIEW_H__9A0B9504_E043_11D1_9B77_00AA003D8695__INCLUDED_)
#define AFX_WZDTABBEDVIEW_H__9A0B9504_E043_11D1_9B77_00AA003D8695__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// WzdTView.h : header file
//

#include "PageOne.h"
#include "PageTwo.h"

/////////////////////////////////////////////////////////////////////////////
// CWzdTabbedView view

class CWzdTabbedView : public CScrollView
{
protected:
	CWzdTabbedView();           // protected constructor used by dynamic creation
	DECLARE_DYNCREATE(CWzdTabbedView)

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CWzdTabbedView)
	protected:
	virtual void OnDraw(CDC* pDC);      // overridden to draw this view
	virtual void OnInitialUpdate();     // first time after construct
	//}}AFX_VIRTUAL

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

	// Generated message map functions
	//{{AFX_MSG(CWzdTabbedView)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnWzdApply();
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CButton		m_button;
	CPageOne	m_pageOne;
	CPageTwo	m_pageTwo;
	CPropertySheet m_sheet;
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.

#endif //!defined(AFX_WZDTABBEDVIEW_H__9A0B9504_E043_11D1_9B77_00AA003D8695__INCLUDED_)

⌨️ 快捷键说明

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