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

📄 viewerdemodoc.cpp

📁 图像显示软件源码
💻 CPP
字号:
// ViewerDemoDoc.cpp : implementation of the CViewerDemoDoc class
//

#include "stdafx.h"
#include "ViewerDemo.h"

#include "ViewerDemoDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CViewerDemoDoc

IMPLEMENT_DYNCREATE(CViewerDemoDoc, CDocument)

BEGIN_MESSAGE_MAP(CViewerDemoDoc, CDocument)
END_MESSAGE_MAP()


// CViewerDemoDoc construction/destruction

CViewerDemoDoc::CViewerDemoDoc()
{
    // TODO: add one-time construction code here

}

CViewerDemoDoc::~CViewerDemoDoc()
{
}

BOOL CViewerDemoDoc::OnNewDocument()
{
    if (!CDocument::OnNewDocument())
        return FALSE;

    // TODO: add reinitialization code here
    // (SDI documents will reuse this document)

    return TRUE;
}




// CViewerDemoDoc serialization

void CViewerDemoDoc::Serialize(CArchive& ar)
{
    if (ar.IsStoring())
    {
        // TODO: add storing code here
    }
    else
    {
        // TODO: add loading code here
    }
}


// CViewerDemoDoc diagnostics

#ifdef _DEBUG
void CViewerDemoDoc::AssertValid() const
{
    CDocument::AssertValid();
}

void CViewerDemoDoc::Dump(CDumpContext& dc) const
{
    CDocument::Dump(dc);
}
#endif //_DEBUG


// CViewerDemoDoc commands

⌨️ 快捷键说明

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