?? 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 + -