在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Windows系统编程 → Programming Windows with mfc 2ed

Programming Windows with mfc 2ed

Windows系统编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:3.20M
  • 下载次数:7
  • 浏览次数:45
  • 发布时间:2023-04-18
  • 实例类别:Windows系统编程
  • 发 布 人:xrickliao
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Programming windows window wind MFC

实例介绍

【实例简介】  知名MFC程式设计书: MFC Windows 程序设计代码

【实例截图】

from clipboard

【核心代码】

.
├── Code
│   ├── Chap01
│   │   └── Hello
│   │       ├── Hello.cpp
│   │       ├── Hello.dsp
│   │       ├── Hello.dsw
│   │       ├── Hello.h
│   │       └── Release
│   │           └── Hello.exe
│   ├── Chap02
│   │   ├── Accel
│   │   │   ├── Accel.cpp
│   │   │   ├── Accel.dsp
│   │   │   ├── Accel.dsw
│   │   │   ├── Accel.h
│   │   │   └── Release
│   │   │       └── Accel.exe
│   │   └── Ruler
│   │       ├── Release
│   │       │   └── Ruler.exe
│   │       ├── Ruler.cpp
│   │       ├── Ruler.dsp
│   │       ├── Ruler.dsw
│   │       └── Ruler.h
│   ├── Chap03
│   │   ├── MouseCap
│   │   │   ├── MouseCap.cpp
│   │   │   ├── MouseCap.dsp
│   │   │   ├── MouseCap.dsw
│   │   │   ├── MouseCap.h
│   │   │   └── Release
│   │   │       └── MouseCap.exe
│   │   ├── TicTac
│   │   │   ├── Release
│   │   │   │   └── TicTac.exe
│   │   │   ├── TicTac.cpp
│   │   │   ├── TicTac.dsp
│   │   │   ├── TicTac.dsw
│   │   │   └── TicTac.h
│   │   └── VisualKB
│   │       ├── Release
│   │       │   └── VisualKB.exe
│   │       ├── VisualKB.cpp
│   │       ├── VisualKB.dsp
│   │       ├── VisualKB.dsw
│   │       └── VisualKB.h
│   ├── Chap04
│   │   ├── Colors
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── Colors.aps
│   │   │   ├── Colors.clw
│   │   │   ├── Colors.cpp
│   │   │   ├── Colors.dsp
│   │   │   ├── Colors.dsw
│   │   │   ├── Colors.h
│   │   │   ├── Colors.rc
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── Release
│   │   │   │   └── Colors.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── Colors.ico
│   │   │   │   └── Colors.rc2
│   │   │   └── resource.h
│   │   └── Shapes
│   │       ├── ChildView.cpp
│   │       ├── ChildView.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── Release
│   │       │   └── Shapes.exe
│   │       ├── Shapes.aps
│   │       ├── Shapes.clw
│   │       ├── Shapes.cpp
│   │       ├── Shapes.dsp
│   │       ├── Shapes.dsw
│   │       ├── Shapes.h
│   │       ├── Shapes.rc
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── Shapes.ico
│   │       │   └── Shapes.rc2
│   │       └── resource.h
│   ├── Chap07
│   │   ├── ColorText
│   │   │   ├── ColorText.cpp
│   │   │   ├── ColorText.dsp
│   │   │   ├── ColorText.dsw
│   │   │   ├── ColorText.h
│   │   │   └── Release
│   │   │       └── ColorText.exe
│   │   ├── FontView
│   │   │   ├── FontView.cpp
│   │   │   ├── FontView.dsp
│   │   │   ├── FontView.dsw
│   │   │   ├── FontView.h
│   │   │   └── Release
│   │   │       └── FontView.exe
│   │   ├── IconView
│   │   │   ├── IconView.cpp
│   │   │   ├── IconView.dsp
│   │   │   ├── IconView.dsw
│   │   │   ├── IconView.h
│   │   │   └── Release
│   │   │       └── IconView.exe
│   │   └── MyPad
│   │       ├── ChildView.cpp
│   │       ├── ChildView.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── MyPad.aps
│   │       ├── MyPad.clw
│   │       ├── MyPad.cpp
│   │       ├── MyPad.dsp
│   │       ├── MyPad.dsw
│   │       ├── MyPad.h
│   │       ├── MyPad.rc
│   │       ├── Release
│   │       │   └── MyPad.exe
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── MyPad.ico
│   │       │   └── MyPad.rc2
│   │       └── resource.h
│   ├── Chap08
│   │   ├── DlgCalc
│   │   │   ├── DlgCalc.aps
│   │   │   ├── DlgCalc.clw
│   │   │   ├── DlgCalc.cpp
│   │   │   ├── DlgCalc.dsp
│   │   │   ├── DlgCalc.dsw
│   │   │   ├── DlgCalc.h
│   │   │   ├── DlgCalc.rc
│   │   │   ├── DlgCalcDlg.cpp
│   │   │   ├── DlgCalcDlg.h
│   │   │   ├── Release
│   │   │   │   └── DlgCalc.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── DlgCalc.ico
│   │   │   │   └── DlgCalc.rc2
│   │   │   └── resource.h
│   │   ├── DlgDemo1
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── DlgDemo1.aps
│   │   │   ├── DlgDemo1.clw
│   │   │   ├── DlgDemo1.cpp
│   │   │   ├── DlgDemo1.dsp
│   │   │   ├── DlgDemo1.dsw
│   │   │   ├── DlgDemo1.h
│   │   │   ├── DlgDemo1.rc
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── OptionsDialog.cpp
│   │   │   ├── OptionsDialog.h
│   │   │   ├── Release
│   │   │   │   └── DlgDemo1.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── DlgDemo1.ico
│   │   │   │   └── DlgDemo1.rc2
│   │   │   └── resource.h
│   │   ├── DlgDemo2
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── DlgDemo2.aps
│   │   │   ├── DlgDemo2.clw
│   │   │   ├── DlgDemo2.cpp
│   │   │   ├── DlgDemo2.dsp
│   │   │   ├── DlgDemo2.dsw
│   │   │   ├── DlgDemo2.h
│   │   │   ├── DlgDemo2.rc
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── OptionsDialog.cpp
│   │   │   ├── OptionsDialog.h
│   │   │   ├── Release
│   │   │   │   └── DlgDemo2.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── DlgDemo2.ico
│   │   │   │   └── DlgDemo2.rc2
│   │   │   └── resource.h
│   │   ├── Phones
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── EditDialog.cpp
│   │   │   ├── EditDialog.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── PhoneEdit.cpp
│   │   │   ├── PhoneEdit.h
│   │   │   ├── Phones.aps
│   │   │   ├── Phones.clw
│   │   │   ├── Phones.cpp
│   │   │   ├── Phones.dsp
│   │   │   ├── Phones.dsw
│   │   │   ├── Phones.h
│   │   │   ├── Phones.rc
│   │   │   ├── PhonesListBox.cpp
│   │   │   ├── PhonesListBox.h
│   │   │   ├── Release
│   │   │   │   └── Phones.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── Cancel.ico
│   │   │   │   ├── Ok.ico
│   │   │   │   ├── Phones.ico
│   │   │   │   ├── Phones.rc2
│   │   │   │   ├── check.ico
│   │   │   │   └── icon1.ico
│   │   │   └── resource.h
│   │   └── PropDemo
│   │       ├── ChildView.cpp
│   │       ├── ChildView.h
│   │       ├── ColorPage.cpp
│   │       ├── ColorPage.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── MyPropertySheet.cpp
│   │       ├── MyPropertySheet.h
│   │       ├── PropDemo.aps
│   │       ├── PropDemo.clw
│   │       ├── PropDemo.cpp
│   │       ├── PropDemo.dsp
│   │       ├── PropDemo.dsw
│   │       ├── PropDemo.h
│   │       ├── PropDemo.rc
│   │       ├── Release
│   │       │   └── PropDemo.exe
│   │       ├── SizePage.cpp
│   │       ├── SizePage.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── PropDemo.ico
│   │       │   └── PropDemo.rc2
│   │       └── resource.h
│   ├── Chap09
│   │   └── SdiSquares
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── SdiSquares.exe
│   │       ├── SdiSquares.aps
│   │       ├── SdiSquares.clw
│   │       ├── SdiSquares.cpp
│   │       ├── SdiSquares.dsp
│   │       ├── SdiSquares.dsw
│   │       ├── SdiSquares.h
│   │       ├── SdiSquares.rc
│   │       ├── SdiSquares.reg
│   │       ├── SquaresDoc.cpp
│   │       ├── SquaresDoc.h
│   │       ├── SquaresView.cpp
│   │       ├── SquaresView.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── SdiSquares.ico
│   │       │   ├── SdiSquares.rc2
│   │       │   └── SquaresDoc.ico
│   │       └── resource.h
│   ├── Chap10
│   │   ├── DriveTree
│   │   │   ├── DriveTree.aps
│   │   │   ├── DriveTree.clw
│   │   │   ├── DriveTree.cpp
│   │   │   ├── DriveTree.dsp
│   │   │   ├── DriveTree.dsw
│   │   │   ├── DriveTree.h
│   │   │   ├── DriveTree.rc
│   │   │   ├── DriveTreeDoc.cpp
│   │   │   ├── DriveTreeDoc.h
│   │   │   ├── DriveView.cpp
│   │   │   ├── DriveView.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── DriveTree.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── DriveTree.ico
│   │   │   │   ├── DriveTree.rc2
│   │   │   │   ├── DriveTreeDoc.ico
│   │   │   │   └── Drives.bmp
│   │   │   └── resource.h
│   │   ├── HtmlClock
│   │   │   ├── HtmlClock.aps
│   │   │   ├── HtmlClock.cpp
│   │   │   ├── HtmlClock.dsp
│   │   │   ├── HtmlClock.dsw
│   │   │   ├── HtmlClock.h
│   │   │   ├── HtmlClock.rc
│   │   │   ├── HtmlClockDoc.cpp
│   │   │   ├── HtmlClockDoc.h
│   │   │   ├── HtmlClockView.cpp
│   │   │   ├── HtmlClockView.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── HtmlClock.exe
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── clock.htm
│   │   │   └── res
│   │   │       ├── HtmlClock.ico
│   │   │       ├── HtmlClock.rc2
│   │   │       └── HtmlClockDoc.ico
│   │   ├── ScrollDemo
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── ScrollDemo.exe
│   │   │   ├── ScrollDemo.aps
│   │   │   ├── ScrollDemo.clw
│   │   │   ├── ScrollDemo.cpp
│   │   │   ├── ScrollDemo.dsp
│   │   │   ├── ScrollDemo.dsw
│   │   │   ├── ScrollDemo.h
│   │   │   ├── ScrollDemo.rc
│   │   │   ├── ScrollDemoDoc.cpp
│   │   │   ├── ScrollDemoDoc.h
│   │   │   ├── ScrollDemoView.cpp
│   │   │   ├── ScrollDemoView.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── ScrollDemo.ico
│   │   │   │   ├── ScrollDemo.rc2
│   │   │   │   └── ScrollDemoDoc.ico
│   │   │   └── resource.h
│   │   └── WinDir
│   │       ├── FileView.cpp
│   │       ├── FileView.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── PathDialog.cpp
│   │       ├── PathDialog.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── WinDir.exe
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── WinDir.aps
│   │       ├── WinDir.clw
│   │       ├── WinDir.cpp
│   │       ├── WinDir.dsp
│   │       ├── WinDir.dsw
│   │       ├── WinDir.h
│   │       ├── WinDir.rc
│   │       ├── WinDirDoc.cpp
│   │       ├── WinDirDoc.h
│   │       ├── res
│   │       │   ├── Large.bmp
│   │       │   ├── Small.bmp
│   │       │   ├── WinDir.ico
│   │       │   ├── WinDir.rc2
│   │       │   └── WinDirDoc.ico
│   │       └── resource.h
│   ├── Chap11
│   │   ├── MdiSquares
│   │   │   ├── ChildFrm.cpp
│   │   │   ├── ChildFrm.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── MdiSquares.aps
│   │   │   ├── MdiSquares.clw
│   │   │   ├── MdiSquares.cpp
│   │   │   ├── MdiSquares.dsp
│   │   │   ├── MdiSquares.dsw
│   │   │   ├── MdiSquares.h
│   │   │   ├── MdiSquares.rc
│   │   │   ├── MdiSquares.reg
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── MdiSquares.exe
│   │   │   ├── SquaresDoc.cpp
│   │   │   ├── SquaresDoc.h
│   │   │   ├── SquaresView.cpp
│   │   │   ├── SquaresView.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── MdiSquares.ico
│   │   │   │   ├── MdiSquares.rc2
│   │   │   │   └── SquaresDoc.ico
│   │   │   └── resource.h
│   │   ├── Sketch
│   │   │   ├── Line.cpp
│   │   │   ├── Line.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── Sketch.exe
│   │   │   ├── Sketch.aps
│   │   │   ├── Sketch.clw
│   │   │   ├── Sketch.cpp
│   │   │   ├── Sketch.dsp
│   │   │   ├── Sketch.dsw
│   │   │   ├── Sketch.h
│   │   │   ├── Sketch.rc
│   │   │   ├── Sketch.reg
│   │   │   ├── SketchDoc.cpp
│   │   │   ├── SketchDoc.h
│   │   │   ├── SketchView.cpp
│   │   │   ├── SketchView.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── Sketch.ico
│   │   │   │   ├── Sketch.rc2
│   │   │   │   └── SketchDoc.ico
│   │   │   └── resource.h
│   │   └── Wanderer
│   │       ├── DriveView.cpp
│   │       ├── DriveView.h
│   │       ├── FileView.cpp
│   │       ├── FileView.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── Wanderer.exe
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── Wanderer.aps
│   │       ├── Wanderer.clw
│   │       ├── Wanderer.cpp
│   │       ├── Wanderer.dsp
│   │       ├── Wanderer.dsw
│   │       ├── Wanderer.h
│   │       ├── Wanderer.rc
│   │       ├── WandererDoc.cpp
│   │       ├── WandererDoc.h
│   │       ├── res
│   │       │   ├── Drives.bmp
│   │       │   ├── Large.bmp
│   │       │   ├── Small.bmp
│   │       │   ├── Wanderer.ico
│   │       │   ├── Wanderer.rc2
│   │       │   └── WandererDoc.ico
│   │       └── resource.h
│   ├── Chap12
│   │   └── MyWord
│   │       ├── CntrItem.cpp
│   │       ├── CntrItem.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── MyWord.aps
│   │       ├── MyWord.clw
│   │       ├── MyWord.cpp
│   │       ├── MyWord.dsp
│   │       ├── MyWord.dsw
│   │       ├── MyWord.h
│   │       ├── MyWord.rc
│   │       ├── MyWord.reg
│   │       ├── MyWordDoc.cpp
│   │       ├── MyWordDoc.h
│   │       ├── MyWordView.cpp
│   │       ├── MyWordView.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── MyWord.exe
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── StyleBar.cpp
│   │       ├── StyleBar.h
│   │       ├── res
│   │       │   ├── MyWord.ico
│   │       │   ├── MyWord.rc2
│   │       │   ├── MyWordDoc.ico
│   │       │   ├── Toolbar.bmp
│   │       │   └── stylebar.bmp
│   │       └── resource.h
│   ├── Chap13
│   │   ├── EZPrint
│   │   │   ├── EZPrint.aps
│   │   │   ├── EZPrint.clw
│   │   │   ├── EZPrint.cpp
│   │   │   ├── EZPrint.dsp
│   │   │   ├── EZPrint.dsw
│   │   │   ├── EZPrint.h
│   │   │   ├── EZPrint.rc
│   │   │   ├── EZPrintDoc.cpp
│   │   │   ├── EZPrintDoc.h
│   │   │   ├── EZPrintView.cpp
│   │   │   ├── EZPrintView.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── EZPrint.exe
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   └── res
│   │   │       ├── EZPrint.ico
│   │   │       ├── EZPrint.rc2
│   │   │       └── EZPrintDoc.ico
│   │   └── HexDump
│   │       ├── HexDoc.cpp
│   │       ├── HexDoc.h
│   │       ├── HexDump.aps
│   │       ├── HexDump.clw
│   │       ├── HexDump.cpp
│   │       ├── HexDump.dsp
│   │       ├── HexDump.dsw
│   │       ├── HexDump.h
│   │       ├── HexDump.rc
│   │       ├── HexView.cpp
│   │       ├── HexView.h
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── HexDump.exe
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       └── res
│   │           ├── HexDoc.ico
│   │           ├── HexDump.ico
│   │           └── HexDump.rc2
│   ├── Chap14
│   │   └── Clock
│   │       ├── Clock.cpp
│   │       ├── Clock.dsp
│   │       ├── Clock.dsw
│   │       ├── Clock.h
│   │       ├── Clock.ico
│   │       ├── Clock.rc
│   │       ├── Release
│   │       │   └── Clock.exe
│   │       └── Resource.h
│   ├── Chap15
│   │   ├── BitmapDemo
│   │   │   ├── BitmapDemo.aps
│   │   │   ├── BitmapDemo.clw
│   │   │   ├── BitmapDemo.cpp
│   │   │   ├── BitmapDemo.dsp
│   │   │   ├── BitmapDemo.dsw
│   │   │   ├── BitmapDemo.h
│   │   │   ├── BitmapDemo.rc
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── MaskedBitmap.cpp
│   │   │   ├── MaskedBitmap.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── BitmapDemo.exe
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── BitmapDemo.ico
│   │   │   │   ├── BitmapDemo.rc2
│   │   │   │   └── Drive.bmp
│   │   │   └── resource.h
│   │   ├── LivePalette
│   │   │   ├── LivePalette.cpp
│   │   │   ├── LivePalette.dsp
│   │   │   ├── LivePalette.dsw
│   │   │   ├── LivePalette.h
│   │   │   └── Release
│   │   │       └── LivePalette.exe
│   │   ├── PaletteDemo
│   │   │   ├── PaletteDemo.cpp
│   │   │   ├── PaletteDemo.dsp
│   │   │   ├── PaletteDemo.dsw
│   │   │   ├── PaletteDemo.h
│   │   │   └── Release
│   │   │       └── PaletteDemo.exe
│   │   ├── RegionDemo
│   │   │   ├── RegionDemo.cpp
│   │   │   ├── RegionDemo.dsp
│   │   │   ├── RegionDemo.dsw
│   │   │   ├── RegionDemo.h
│   │   │   └── Release
│   │   │       └── RegionDemo.exe
│   │   └── Vista
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── Vista.exe
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── Vista.aps
│   │       ├── Vista.clw
│   │       ├── Vista.cpp
│   │       ├── Vista.dsp
│   │       ├── Vista.dsw
│   │       ├── Vista.h
│   │       ├── Vista.rc
│   │       ├── VistaDoc.cpp
│   │       ├── VistaDoc.h
│   │       ├── VistaView.cpp
│   │       ├── VistaView.h
│   │       └── res
│   │           ├── Vista.ico
│   │           ├── Vista.rc2
│   │           └── VistaDoc.ico
│   ├── Chap16
│   │   ├── GridDemo
│   │   │   ├── ChildView.cpp
│   │   │   ├── ChildView.h
│   │   │   ├── GridDemo.aps
│   │   │   ├── GridDemo.clw
│   │   │   ├── GridDemo.cpp
│   │   │   ├── GridDemo.dsp
│   │   │   ├── GridDemo.dsw
│   │   │   ├── GridDemo.h
│   │   │   ├── GridDemo.rc
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── MyToolTipCtrl.cpp
│   │   │   ├── MyToolTipCtrl.h
│   │   │   ├── Release
│   │   │   │   └── GridDemo.exe
│   │   │   ├── SettingsDialog.cpp
│   │   │   ├── SettingsDialog.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── GridDemo.ico
│   │   │   │   └── GridDemo.rc2
│   │   │   └── resource.h
│   │   └── PathList
│   │       ├── PathComboBox.cpp
│   │       ├── PathComboBox.h
│   │       ├── PathList.aps
│   │       ├── PathList.clw
│   │       ├── PathList.cpp
│   │       ├── PathList.dsp
│   │       ├── PathList.dsw
│   │       ├── PathList.h
│   │       ├── PathList.rc
│   │       ├── PathListDlg.cpp
│   │       ├── PathListDlg.h
│   │       ├── Release
│   │       │   └── PathList.exe
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── PathList.ico
│   │       │   ├── PathList.rc2
│   │       │   └── bitmap1.bmp
│   │       └── resource.h
│   ├── Chap17
│   │   ├── ImageEdit
│   │   │   ├── ImageEdit.aps
│   │   │   ├── ImageEdit.clw
│   │   │   ├── ImageEdit.cpp
│   │   │   ├── ImageEdit.dsp
│   │   │   ├── ImageEdit.dsw
│   │   │   ├── ImageEdit.h
│   │   │   ├── ImageEdit.rc
│   │   │   ├── ImageEditDoc.cpp
│   │   │   ├── ImageEditDoc.h
│   │   │   ├── ImageEditView.cpp
│   │   │   ├── ImageEditView.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── Release
│   │   │   │   └── ImageEdit.exe
│   │   │   ├── SpecialStatusBar.cpp
│   │   │   ├── SpecialStatusBar.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   ├── res
│   │   │   │   ├── ImageEdit.ico
│   │   │   │   ├── ImageEdit.rc2
│   │   │   │   ├── ImageEditDoc.ico
│   │   │   │   └── TESTDIR.TMP
│   │   │   └── resource.h
│   │   └── Sieve
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── Sieve.exe
│   │       ├── Sieve.aps
│   │       ├── Sieve.clw
│   │       ├── Sieve.cpp
│   │       ├── Sieve.dsp
│   │       ├── Sieve.dsw
│   │       ├── Sieve.h
│   │       ├── Sieve.rc
│   │       ├── SieveDlg.cpp
│   │       ├── SieveDlg.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── res
│   │       │   ├── Sieve.ico
│   │       │   └── Sieve.rc2
│   │       └── resource.h
│   ├── Chap19
│   │   └── Widget
│   │       ├── MainFrm.cpp
│   │       ├── MainFrm.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── Widget.exe
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       ├── Widget.aps
│   │       ├── Widget.clw
│   │       ├── Widget.cpp
│   │       ├── Widget.dsp
│   │       ├── Widget.dsw
│   │       ├── Widget.h
│   │       ├── Widget.rc
│   │       ├── Widget.reg
│   │       ├── WidgetDoc.cpp
│   │       ├── WidgetDoc.h
│   │       ├── WidgetObj.cpp
│   │       ├── WidgetObj.h
│   │       ├── WidgetView.cpp
│   │       ├── WidgetView.h
│   │       └── res
│   │           ├── Widget.ico
│   │           ├── Widget.rc2
│   │           └── WidgetDoc.ico
│   ├── Chap20
│   │   ├── AutoPie
│   │   │   ├── AutoChart.cpp
│   │   │   ├── AutoChart.h
│   │   │   ├── AutoPie.aps
│   │   │   ├── AutoPie.clw
│   │   │   ├── AutoPie.cpp
│   │   │   ├── AutoPie.dsp
│   │   │   ├── AutoPie.dsw
│   │   │   ├── AutoPie.h
│   │   │   ├── AutoPie.odl
│   │   │   ├── AutoPie.rc
│   │   │   ├── AutoPie.reg
│   │   │   ├── AutoPieDoc.cpp
│   │   │   ├── AutoPieDoc.h
│   │   │   ├── AutoPieView.cpp
│   │   │   ├── AutoPieView.h
│   │   │   ├── AutoToolbar.cpp
│   │   │   ├── AutoToolbar.h
│   │   │   ├── AutoWindow.cpp
│   │   │   ├── AutoWindow.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── ReadMe.txt
│   │   │   ├── Release
│   │   │   │   └── AutoPie.exe
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   └── res
│   │   │       ├── AutoPie.ico
│   │   │       ├── AutoPie.rc2
│   │   │       ├── AutoPieDoc.ico
│   │   │       └── Toolbar.bmp
│   │   └── PieClient
│   │       ├── AutoPie.cpp
│   │       ├── AutoPie.h
│   │       ├── PieClient.aps
│   │       ├── PieClient.clw
│   │       ├── PieClient.cpp
│   │       ├── PieClient.dsp
│   │       ├── PieClient.dsw
│   │       ├── PieClient.h
│   │       ├── PieClient.rc
│   │       ├── PieClientDlg.cpp
│   │       ├── PieClientDlg.h
│   │       ├── ReadMe.txt
│   │       ├── Release
│   │       │   └── PieClient.exe
│   │       ├── Resource.h
│   │       ├── StdAfx.cpp
│   │       ├── StdAfx.h
│   │       └── res
│   │           ├── PieClient.ico
│   │           └── PieClient.rc2
│   └── Chap21
│       ├── CalUser
│       │   ├── CalUser.aps
│       │   ├── CalUser.clw
│       │   ├── CalUser.cpp
│       │   ├── CalUser.dsp
│       │   ├── CalUser.dsw
│       │   ├── CalUser.h
│       │   ├── CalUser.rc
│       │   ├── CalUserDlg.cpp
│       │   ├── CalUserDlg.h
│       │   ├── ReadMe.txt
│       │   ├── Release
│       │   │   └── CalUser.exe
│       │   ├── StdAfx.cpp
│       │   ├── StdAfx.h
│       │   ├── calendar.cpp
│       │   ├── calendar.h
│       │   ├── res
│       │   │   ├── CalUser.ico
│       │   │   └── CalUser.rc2
│       │   └── resource.h
│       └── Calendar
│           ├── Calendar.aps
│           ├── Calendar.clw
│           ├── Calendar.cpp
│           ├── Calendar.def
│           ├── Calendar.dsp
│           ├── Calendar.dsw
│           ├── Calendar.h
│           ├── Calendar.ico
│           ├── Calendar.odl
│           ├── Calendar.rc
│           ├── CalendarCtl.bmp
│           ├── CalendarCtl.cpp
│           ├── CalendarCtl.h
│           ├── CalendarPpg.cpp
│           ├── CalendarPpg.h
│           ├── ReadMe.txt
│           ├── Release
│           │   └── Calendar.ocx
│           ├── StdAfx.cpp
│           ├── StdAfx.h
│           └── resource.h
└── Programming Windows with mfc 2ed  知名MFC程式设计书: MFC Windows 程序设计代码。.zip

134 directories, 708 files


实例下载地址

Programming Windows with mfc 2ed

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警