资源简介

《深入浅出MFC》分为四大篇。第一篇提出学习MFC程序设计之前的必要基础,包括Widnows程序的基本观念以及C++的高阶议题。“学前基础”是相当主观的认定,不过,甚于我个人的学习经验以及教学经验,我的挑选应该颇具说服力。第二篇介绍Visual C++整合环境开发工具。本篇只不过是提纲挈领而已,并不企图取代 Visual C++使用手册。然而对于软件使用的老手,此篇或已足以让您掌握Visual C++整合环境。工具的使用虽然谈不上学问,但在视觉化软件开发过程中扮演极重角色,切莫小觑它。 第三篇介绍application framework的观念,以及MFC骨干程序,所谓骨干程序,是指Visua

资源截图

代码片段和文件信息

// ChildFrm.cpp : implementation of the CChildframe class
//

#include “stdafx.h“
#include “ComTest.h“

#include “ChildFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CChildframe

IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)

BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction

CChildframe::CChildframe()
{
// TODO: add member initialization code here

}

CChildframe::~CChildframe()
{
}

BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return CMDIChildWnd::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics

#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}

void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    4058456  2007-11-05 02:15  dissecting MFC 2e part1.pdf

     文件    2406191  2007-11-05 02:15  dissecting MFC 2e part2.pdf

     文件    2997855  2007-11-05 02:15  dissecting MFC 2e part3.pdf

     文件    7865635  2007-11-05 02:15  dissecting MFC 2e part4.pdf

     文件    1679911  2007-11-05 02:15  dissecting MFC 2e part5.pdf

     文件       1497  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ChildFrm.cpp

     文件       1403  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ChildFrm.h

     文件     254244  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.aps

     文件       5375  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.clw

     文件       8116  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.cpp

     文件       5213  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.dsp

     文件        537  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.dsw

     文件       1505  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.h

     文件      52224  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.ncb

     文件      48640  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.opt

     文件       1618  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.plg

     文件      16469  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.rc

     文件        744  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.sln

     文件       7680  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.suo

     文件       5353  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTest.vcproj

     文件       1762  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTestDoc.cpp

     文件       1494  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTestDoc.h

     文件       2611  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTestView.cpp

     文件       1913  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ComTestView.h

     文件     202822  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\DISSECT.BMP

     文件       4563  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\MainFrm.cpp

     文件       1591  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\MainFrm.h

     文件       4253  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\ReadMe.txt

     文件       3268  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\Release\BuildLog.htm

     文件      14033  2007-11-05 02:13  sourcecode\DISSECT\COMTEST.16\Release\ChildFrm.obj

............此处省略557个文件信息

评论

共有 条评论