ex22a.h

来自「VC++技术内幕(第四版)的实例」· C头文件 代码 · 共 25 行

H
25
字号
// application class
#include "resource.h"

class CEx22aApp : public CWinApp
{
public:
    virtual BOOL InitInstance();
};

// frame window class
class CMainFrame : public CFrameWnd
{
public:
    CMainFrame();
protected:  
    //{{AFX_MSG(CMainFrame)
    afx_msg void OnPaint();
    afx_msg void OnClose();
    afx_msg BOOL OnQueryEndSession();
    afx_msg void OnFile();
    afx_msg void OnHlp();
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};

⌨️ 快捷键说明

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