⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ceroutguide.h

📁 别的的密钥管理程序
💻 H
字号:
#if !defined(AFX_CEROUTGUIDE_H__F9348FF2_A8FB_4D39_8EFB_65026CE8F072__INCLUDED_)
#define AFX_CEROUTGUIDE_H__F9348FF2_A8FB_4D39_8EFB_65026CE8F072__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Ceroutguide.h : header file
//
#include "Cerout1.h"
#include "Cerout2.h"
//#include "Cerout3.h"
#include "Cerout4.h"
#include "Cerout5.h"
/////////////////////////////////////////////////////////////////////////////
// CCeroutguide dialog

class CCeroutguide : public CDialog
{
// Construction
public:
	CCeroutguide(CWnd* pParent = NULL);   // standard constructor
    void SetWizButton(UINT uFlag);
	void ShowPage(UINT nPos);
	void AddPage(UINT nID);

	CRect rectPage;   //每页显示的框
    UINT nPageCount;  //页的总数
	UINT nCurrentPage; //显示的当前页
	//定义包含的对话框的对象
//	CCerout1 cerout1;
//	CCerout2 cerout2;
//	CCerout3 cerout3;
//  CCerout4 cerout4;
//  CCerout5 cerout5;
// Dialog Data
	//{{AFX_DATA(CCeroutguide)
	enum { IDD = IDD_CEROUTGUIDE };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CCeroutguide)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
typedef struct PAGELINK
	{
		UINT nNum;
		CDialog *pDialog;
		struct PAGELINK *Next;
	};//nNum为页的编号
	PAGELINK *pPageLink; //用来链接所有的页

	// Generated message map functions
	//{{AFX_MSG(CCeroutguide)
	afx_msg void OnCancel();
	afx_msg void OnFinish();
	afx_msg void OnNext();
	afx_msg void OnPrev();
	afx_msg void OnDestroy();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CEROUTGUIDE_H__F9348FF2_A8FB_4D39_8EFB_65026CE8F072__INCLUDED_)

⌨️ 快捷键说明

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