• 大小: 2.33MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-14
  • 语言: C/C++
  • 标签: VC++6.0  全屏切换  

资源简介

示例仅供参考,切换只是提供了思路,还需要微调!

资源截图

代码片段和文件信息

// Doc.cpp : implementation of the CDoc class
// Download by http://www.codefans.net

#include “stdafx.h“
#include “MultiScreen.h“

#include “Doc.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDoc

IMPLEMENT_DYNCREATE(CDoc CDocument)

BEGIN_MESSAGE_MAP(CDoc CDocument)
//{{AFX_MSG_MAP(CDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDoc construction/destruction

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

}

CDoc::~CDoc()
{
}

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

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

return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CDoc commands

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-01-25 14:35  ScreenSwitch\Debug\
     文件       13971  2016-01-25 13:39  ScreenSwitch\Debug\Doc.obj
     文件       29188  2016-01-25 13:39  ScreenSwitch\Debug\MainFrm.obj
     文件       26273  2016-01-25 13:39  ScreenSwitch\Debug\MainView.obj
     文件      131139  2016-01-25 13:57  ScreenSwitch\Debug\MultiScreen.exe
     文件      357988  2016-01-25 13:57  ScreenSwitch\Debug\MultiScreen.ilk
     文件       22477  2016-01-25 13:39  ScreenSwitch\Debug\MultiScreen.obj
     文件     5465880  2016-01-25 13:39  ScreenSwitch\Debug\MultiScreen.pch
     文件      467968  2016-01-25 13:57  ScreenSwitch\Debug\MultiScreen.pdb
     文件       11572  2016-01-25 13:57  ScreenSwitch\Debug\MultiScreen.res
     文件      105517  2016-01-25 13:39  ScreenSwitch\Debug\StdAfx.obj
     文件      214016  2016-01-25 14:35  ScreenSwitch\Debug\vc60.idb
     文件      364544  2016-01-25 13:39  ScreenSwitch\Debug\vc60.pdb
     文件       20500  2016-01-25 13:39  ScreenSwitch\Debug\View2.obj
     文件       20500  2016-01-25 13:39  ScreenSwitch\Debug\View3.obj
     文件       20500  2016-01-25 13:39  ScreenSwitch\Debug\View4.obj
     文件        1669  2013-11-23 11:23  ScreenSwitch\Doc.cpp
     文件        1417  1998-11-17 22:34  ScreenSwitch\Doc.h
     文件        6924  2013-11-23 11:23  ScreenSwitch\MainFrm.cpp
     文件        1765  1998-11-17 23:59  ScreenSwitch\MainFrm.h
     文件        4899  2013-11-23 11:23  ScreenSwitch\MainView.cpp
     文件        2022  1998-11-19 22:15  ScreenSwitch\MainView.h
     文件       34700  2016-01-25 14:35  ScreenSwitch\MultiScreen.aps
     文件        7522  2016-01-25 15:10  ScreenSwitch\MultiScreen.clw
     文件        4246  1998-11-17 22:34  ScreenSwitch\MultiScreen.cpp
     文件        5276  1997-01-14 13:27  ScreenSwitch\MultiScreen.dsp
     文件         547  1997-01-14 13:27  ScreenSwitch\MultiScreen.dsw
     文件        1421  1998-11-17 22:34  ScreenSwitch\MultiScreen.h
     文件       91136  2016-01-25 15:10  ScreenSwitch\MultiScreen.ncb
     文件       56832  2016-01-25 15:10  ScreenSwitch\MultiScreen.opt
     文件         256  2016-01-25 14:35  ScreenSwitch\MultiScreen.plg
............此处省略15个文件信息

评论

共有 条评论