📄 ex21c.h
字号:
// Ex21c.h : main header file for the Ex21c application
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
// CEx21cApp:
// See Ex21c.cpp for the implementation of this class
//
class CEx21cApp : public CWinApp
{
public:
CEx21cApp();
// Overrides
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// Implementation
protected:
HMENU m_hMDIMenu;
HACCEL m_hMDIAccel;
public:
afx_msg void OnAppAbout();
afx_msg void OnFileNew();
DECLARE_MESSAGE_MAP()
};
extern CEx21cApp theApp;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -