• 大小: 7.07MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-09-26
  • 语言: C/C++
  • 标签:

资源简介

全程图解MFC制作类似VisualStudio2010界面,含源代码,是初学MFC的好教程。

资源截图

代码片段和文件信息


// ChildFrm.cpp : CChildframe 类的实现
//

#include “stdafx.h“
#include “MyTest.h“

#include “ChildFrm.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

// CChildframe

IMPLEMENT_DYNCREATE(CChildframe CMDIChildWndEx)

BEGIN_MESSAGE_MAP(CChildframe CMDIChildWndEx)
END_MESSAGE_MAP()

// CChildframe 构造/析构

CChildframe::CChildframe()
{
// TODO: 在此添加成员初始化代码
}

CChildframe::~CChildframe()
{
}


BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: 在此处通过修改 CREATESTRUCT cs 来修改窗口类或样式
if( !CMDIChildWndEx::PreCreateWindow(cs) )
return FALSE;

return TRUE;
}

// CChildframe 诊断

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

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

// CChildframe 消息处理程序

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

     文件        890  2014-07-19 07:39  MyTest\ChildFrm.cpp

     文件        483  2014-07-19 07:39  MyTest\ChildFrm.h

     文件      10633  2014-07-19 10:59  MyTest\MainFrm.cpp

     文件       1255  2014-07-19 10:52  MyTest\MainFrm.h

     文件       5085  2014-07-19 07:39  MyTest\MyTest.cpp

     文件        650  2014-07-19 07:39  MyTest\MyTest.h

     文件      33268  2014-07-19 10:51  MyTest\MyTest.rc

     文件       6787  2014-07-19 10:51  MyTest\MyTest.vcxproj

     文件       3886  2014-07-19 10:51  MyTest\MyTest.vcxproj.filters

     文件        143  2014-07-19 07:39  MyTest\MyTest.vcxproj.user

     文件       2508  2014-07-19 07:39  MyTest\MyTestDoc.cpp

     文件        847  2014-07-19 07:39  MyTest\MyTestDoc.h

     文件       2411  2014-07-19 07:39  MyTest\MyTestView.cpp

     文件       1116  2014-07-19 07:39  MyTest\MyTestView.h

     文件       5960  2014-07-19 10:04  MyTest\PersonView.cpp

     文件        962  2014-07-19 10:04  MyTest\PersonView.h

     文件       3774  2014-07-19 07:39  MyTest\ReadMe.txt

     文件       1270  2009-08-31 02:32  MyTest\res\bitmap1.bmp

     文件        824  2014-07-19 09:52  MyTest\res\explorer_hc.bmp

     文件        478  2014-07-19 09:52  MyTest\res\fileview.bmp

     文件       2216  2014-07-19 10:10  MyTest\res\fileview_hc.bmp

     文件       1078  2014-07-19 10:51  MyTest\res\file_view.ico

     文件       2166  2014-07-19 10:48  MyTest\res\file_view_hc.ico

    .......     67777  2009-08-31 02:31  MyTest\res\MyTest.ico

     文件        668  2014-07-19 07:39  MyTest\res\MyTest.rc2

    .......      4710  2009-08-31 02:31  MyTest\res\MyTestDoc.ico

    .......      1078  2009-08-31 02:31  MyTest\res\Toolbar.bmp

     文件        238  2014-07-19 09:35  MyTest\res\toolbar1.bmp

    .......      5816  2009-08-31 03:59  MyTest\res\Toolbar256.bmp

     文件       5174  2014-07-19 10:51  MyTest\resource.h

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

评论

共有 条评论