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

📄 mainwnd.h

📁 是一本很经典的书
💻 H
字号:
///////////////////////////////////////////////////////////////////
//  Header  : MAINWND.H
//
//  Purpose : Interface for the CMainWnd class.
//
//  Author  : Rob McGregor, rob_mcgregor@compuserve.com
//        
//  Date    : 05-26-96
///////////////////////////////////////////////////////////////////

#ifndef __MAINWND_H__
#define __MAINWND_H__

#include "mainfram.h"   // Custom frame window base class
#include "wizdata.h"
#include "wizard.h"
#include "intropg.h"
#include "page1.h"
#include "page2.h"
#include "page3.h"
#include "page4.h"

///////////////////////////////////////////////////////////////////
// Frame window class 

class CMainWnd : public CMainFrame
{ 
   DECLARE_DYNCREATE(CMainWnd)

public:
   CMainWnd(); 
   virtual ~CMainWnd(); 

protected:
   CStatusBar   m_wndStatusBar;
   
   CWizard*      m_pwndWizard;
   CIntroPage*   m_pdlgIntro;
   CPage1*       m_pdlgPage1;
   CPage2*       m_pdlgPage2;
   CPage3*       m_pdlgPage3;
   CPage4*       m_pdlgPage4;
   
   COLORREF      m_crBackColor;

   // Message map methods
   afx_msg int OnCreate(LPCREATESTRUCT lpCS);
   afx_msg void OnFileExit();
   afx_msg void OnFileRunWizard();
   afx_msg void OnHelpAbout();

   DECLARE_MESSAGE_MAP()
};

///////////////////////////////////////////////////////////////////
// CAboutDlg dialog

class CAboutDlg : public CDialog
{
// Construction
public:
   CAboutDlg(CWnd* pParent = NULL);   // standard constructor
   enum { IDD = IDD_ABOUTBOX };
};

// Inline constructor
inline CAboutDlg::CAboutDlg(CWnd* pParent) : 
   CDialog(CAboutDlg::IDD, pParent) { }


#endif  // __MAINWND_H__

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

⌨️ 快捷键说明

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