⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex16cdoc.h

📁 vc.net内幕系列源码
💻 H
字号:
// Ex16cDoc.h : interface of the CEx16cDoc class
//


#pragma once

#include "student.h"

class CEx16cDoc : public CDocument
{
protected: // create from serialization only
	CEx16cDoc();
	DECLARE_DYNCREATE(CEx16cDoc)

// Attributes
public:
	CStudentList* GetList() {
        return &m_studentList;
    }

// Operations
public:

// Overrides
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);

// Implementation
public:
	virtual ~CEx16cDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	DECLARE_MESSAGE_MAP()

private:
    CStudentList m_studentList;

public:
    virtual void DeleteContents();
    afx_msg void OnEditClearall();
    afx_msg void OnUpdateEditClearall(CCmdUI *pCmdUI);
    virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
    afx_msg void OnUpdateFileSave(CCmdUI *pCmdUI);
};


⌨️ 快捷键说明

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