资源简介
本资源是c++课程结束后的课程设计,主要包含是11个MFC项目(1.在文本框中设计一个滚动字幕项目2.计算器的设计与实现项目3.画笔4.显示硬盘信息5.获取和修改计算机NetBIOS名称(缺oldname部分)6.关机、重启、切换用户程序7.视图文本与对话框8. 设计一个鼠标定时提示9.在视图中显示Html网页10.不同区域显示不同鼠标图片
11.MFC简单操作Word,内含项目可以直接打开。
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “mfc_1.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
CMainframe::~CMainframe()
{
}
int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-06-12 15:42 MFC\
文件 28160 2019-06-12 15:26 MFC\C++程序设计考试内容.doc
目录 0 2019-06-12 15:26 MFC\mfc_1\
目录 0 2019-06-12 15:26 MFC\mfc_10\
目录 0 2019-06-12 15:26 MFC\mfc_10\Debug\
文件 19654 2019-06-12 15:26 MFC\mfc_10\Debug\MainFrm.obj
文件 172079 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.exe
文件 305380 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.ilk
文件 22682 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.obj
文件 5495900 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.pch
文件 328704 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.pdb
文件 50540 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10.res
文件 14455 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10Doc.obj
文件 22351 2019-06-12 15:26 MFC\mfc_10\Debug\mfc_10View.obj
文件 105389 2019-06-12 15:26 MFC\mfc_10\Debug\StdAfx.obj
文件 205824 2019-06-12 15:26 MFC\mfc_10\Debug\vc60.idb
文件 364544 2019-06-12 15:26 MFC\mfc_10\Debug\vc60.pdb
文件 2507 2019-06-12 15:26 MFC\mfc_10\MainFrm.cpp
文件 1581 2019-06-12 15:26 MFC\mfc_10\MainFrm.h
文件 88984 2019-06-12 15:26 MFC\mfc_10\mfc_10.aps
文件 2275 2019-06-12 15:26 MFC\mfc_10\mfc_10.clw
文件 4209 2019-06-12 15:26 MFC\mfc_10\mfc_10.cpp
文件 5447 2019-06-12 15:26 MFC\mfc_10\mfc_10.dsp
文件 520 2019-06-12 15:26 MFC\mfc_10\mfc_10.dsw
文件 1356 2019-06-12 15:26 MFC\mfc_10\mfc_10.h
文件 50176 2019-06-12 15:26 MFC\mfc_10\mfc_10.ncb
文件 48640 2019-06-12 15:26 MFC\mfc_10\mfc_10.opt
文件 1137 2019-06-12 15:26 MFC\mfc_10\mfc_10.plg
文件 12610 2019-06-12 15:26 MFC\mfc_10\mfc_10.rc
文件 1742 2019-06-12 15:26 MFC\mfc_10\mfc_10Doc.cpp
文件 1475 2019-06-12 15:26 MFC\mfc_10\mfc_10Doc.h
............此处省略413个文件信息
- 上一篇:opencv人脸检测与跟踪
- 下一篇:魔塔C++实现
相关资源
- 魔塔C++实现
- The C++ Programming Language 4th Edition英文版
- MFC编程小学生100以内算数
- VisualC++面向对象与可视化程序设计习
- MFC图书管理系统亲测可用
- CAD应用程序开发详解
- 将matlab的图嵌入MFC
- libharu 写PDF 开源 C C++ 库
- Visual C++数字图像识别技术典型案例
- c++经典代码大全 清晰版
-
Jli
nk UDT Jli nk API - Microsoft Visual C++ 2019 Redistributable wind
- opencv+directshow同步打开4个摄像头
- c++ 反编译工具可以反编译未加壳的
- MFC PNG GDI 实现的Process 进度控件
- c++经典代码大全.pdf
- 分享vc++ 游戏开发经典案例详解王浩编
- 深入理解C++11:C++11新特性解析与应用,
- Qt结合OpenCV和VC++实现调用摄像头拍照
- C++ Primer Plus 第六版 英文版 mobi格式
- 基于WinpCap的MFC网络抓包程序
- Visual C++网络通信协议分析与应用实现
- C++ primer中文 word版
- 兄弟 DCP-9020CDN MFC-9140CDN-9340CDW 维修手
- MFC局域网即时聊天系统
- 数据结构 C++ 邓俊辉
- 张友生博士所著《远程控制编程技术
- 双线性插值放大缩小图片 bmp mfc程序
- QtTcpCpp.rar
- The Modern C++ Challenge
评论
共有 条评论