📄 notepadedoc.h
字号:
// NotePadeDoc.h : interface of the CNotePadeDoc class
//
#pragma once
class CNotePadeDoc : public CDocument
{
protected: // create from serialization only
CNotePadeDoc();
DECLARE_DYNCREATE(CNotePadeDoc)
// Attributes
public:
// Operations
public:
// Overrides
public:
virtual BOOL OnNewDocument();
#ifndef _WIN32_WCE_NO_ARCHIVE_SUPPORT
virtual void Serialize(CArchive& ar);
#endif // !_WIN32_WCE_NO_ARCHIVE_SUPPORT
// Implementation
public:
virtual ~CNotePadeDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
#endif
protected:
// Generated message map functions
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnFileSave();
afx_msg void OnFileNew();
afx_msg void OnFileOpen();
afx_msg void OnAppExit();
afx_msg void OnFileSaveAs();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -