sheet.h

来自「对文件进行处理。 包括文件复制、分割、连接、查看等。」· C头文件 代码 · 共 60 行

H
60
字号
#if !defined(AFX_SHEET_H__E3424DB7_955D_11D8_BB68_C887A37A4730__INCLUDED_)
#define AFX_SHEET_H__E3424DB7_955D_11D8_BB68_C887A37A4730__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Sheet.h : header file
//
#include "CompPage.h"
#include "FracPage.h"
#include "LinkPage.h"
#include "LookPage.h"
#include "EqualityPage.h"
/////////////////////////////////////////////////////////////////////////////
// CSheet

class CSheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CSheet)

// Construction
public:
	CSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
	CSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);

// Attributes
public:
	CCompPage m_Comp;
//	CCopyPage m_Copy;
	CFracPage m_Frac;
	CLinkPage m_Link;
	CLookPage m_Look;
	CEqualityPage m_Equality;
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CSheet)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CSheet();

	// Generated message map functions
protected:
	//{{AFX_MSG(CSheet)
	afx_msg void OnDestroy();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SHEET_H__E3424DB7_955D_11D8_BB68_C887A37A4730__INCLUDED_)

⌨️ 快捷键说明

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