myhelper.h

来自「混乱竞技场的全套代码,客户端资源可以网上搜」· C头文件 代码 · 共 58 行

H
58
字号
#if !defined(AFX_MYHELPER_H__BFEEAF8F_470C_402D_AA42_7BF45D5E4C53__INCLUDED_)
#define AFX_MYHELPER_H__BFEEAF8F_470C_402D_AA42_7BF45D5E4C53__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CMyHelper
#include "DebugerPage.h"

class CMyHelper : public CPropertySheet
{
	DECLARE_DYNAMIC(CMyHelper)

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

// Attributes
public:
	virtual void OnOK();
	virtual void OnCancel();

	CDebugerPage	m_debuger;

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMyHelper)
	public:
	virtual BOOL OnInitDialog();
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CMyHelper();

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

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

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

#endif // !defined(AFX_MYHELPER_H__BFEEAF8F_470C_402D_AA42_7BF45D5E4C53__INCLUDED_)

⌨️ 快捷键说明

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