📄 mainfrm.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -