资源简介
深入浅出MFC第二版+源码
代码片段和文件信息
// 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
- 上一篇:MFC入门教程完整整合版
- 下一篇:计算机考研资料
相关资源
- MFC入门教程完整整合版
- 网络编程C++ MFC获取MAC地址
- VS2008MFC动态波形的绘制
- 面向对象程序设计 旅店管理系统
- MFC中将两个独立的程序合并为一个程
- 英语学习软件,类似于四级背单词软
- 对对碰 MFC实现 有源码
- C++ MFC 餐饮管理系统
- 基于opencv和MFC的多功能视频、图像处
- mfc画y=x^2的曲线
- 中英语种识别matlab程序包含40个测试音
- mqtt-client MFC工程调用开源代码
- MFC小游戏代码
- MFC编程
- 基于VC6.0 的MFC俄罗斯方块游戏设计含
- 基于MFC的图像融合程序
- MFC异形按钮
- MFC之CSerialPort类双串口发送接收
- VS2017-MFC串口通信(基于CSerialPort类)
- 遥感图像处理系统MFC
- vs2019 + MFC 销售管理系统
- opencv+MFC实现图像拼接
- 车牌识别的mfc加opencv
- 记事本之文本编辑器MFC/C++
- 计算机图形学(MFC)-直线段裁剪
- MFC学生成绩管理系统功能全面版
- 计算机图形学MFC-双缓冲二维图形几何
- VS2015MFC+Opencv2 打开图片及简单的图像
- MFC学生信息管理系统
- VS2013写的MFC多线程多串口编程,多串
评论
共有 条评论