mainfrm.h
来自「使用HOOPS库开发的一个教学演示工具。」· C头文件 代码 · 共 58 行
H
58 行
// MainFrm.h : interface of the CMainFrame class, derived from CHoopsFrame// Adds application specific frame creation (to install the app toolbars, etc...)#ifndef _CMainFrame__H_#define _CMainFrame__H_#if _MSC_VER >= 1000#pragma once#endif // _MSC_VER >= 1000// MainFrm.h : header file//#include "CHoopsFrm.h"#include "afxext.h"/////////////////////////////////////////////////////////////////////////////// CMainFrame frameclass CMainFrame : public CHoopsFrame{protected:// Attributespublic:// Operationspublic: CMainFrame(); // protected constructor used by dynamic creation DECLARE_DYNCREATE(CMainFrame)// Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMainFrame) //}}AFX_VIRTUAL// Implementationprotected: virtual ~CMainFrame(); // Generated message map functions //{{AFX_MSG(CMainFrame) afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); //}}AFX_MSG DECLARE_MESSAGE_MAP()public:
CToolBar m_toolbar_danbai;
CToolBar m_toolbar_tanhuang;
afx_msg void OnClose();
};///////////////////////////////////////////////////////////////////////////////{{AFX_INSERT_LOCATION}}// Microsoft Developer Studio will insert additional declarations immediately before the previous line.#endif // _CMainFrame__H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?