mainfrm.h

来自「我近期从事视频开发所以将我参考的资料上传给大家看看。」· C头文件 代码 · 共 30 行

H
30
字号
class CMainFrame : public CFrameWnd
{
public:
	virtual ~CMainFrame();

	//{{AFX_VIRTUAL(CMainFrame)
	//}}AFX_VIRTUAL

#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
	CMainFrame();

	DECLARE_DYNCREATE(CMainFrame)

	CStatusBar  m_wndStatusBar;
	CToolBar    m_wndToolBar;

	//{{AFX_MSG(CMainFrame)
	afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
	afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
	afx_msg BOOL OnQueryNewPalette();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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