資源簡介
《深入淺出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個文件信息
- 上一篇:vc++6.0簡體中文版
- 下一篇:17個VC++與OPENGL寫的游戲程序代碼
評論
共有 條評論