资源简介
这是我从网上找的MFC显示GIF动画的功能和显示图片的功能,哈哈哈哈
代码片段和文件信息
// gifshow.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “gifshow.h“
#include “gifshowDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGifshowApp
BEGIN_MESSAGE_MAP(CGifshowApp CWinApp)
//{{AFX_MSG_MAP(CGifshowApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGifshowApp construction
CGifshowApp::CGifshowApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CGifshowApp object
CGifshowApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CGifshowApp initialization
BOOL CGifshowApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CGifshowDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 204854 2015-09-22 10:49 gifshow\Debug\gifshow.exe
文件 313196 2015-09-22 10:49 gifshow\Debug\gifshow.ilk
文件 18618 2015-09-22 10:35 gifshow\Debug\gifshow.obj
文件 5493172 2015-09-22 10:04 gifshow\Debug\gifshow.pch
文件 476160 2015-09-22 10:49 gifshow\Debug\gifshow.pdb
文件 63284 2015-09-22 10:49 gifshow\Debug\gifshow.res
文件 50350 2015-09-22 10:48 gifshow\Debug\gifshowDlg.obj
文件 79570 2015-09-22 10:04 gifshow\Debug\PictureEx.obj
文件 105456 2015-09-22 10:04 gifshow\Debug\StdAfx.obj
文件 254976 2015-09-22 10:51 gifshow\Debug\vc60.idb
文件 438272 2015-09-22 10:48 gifshow\Debug\vc60.pdb
文件 96524 2015-09-22 10:49 gifshow\gifshow.aps
文件 1287 2015-09-22 10:50 gifshow\gifshow.clw
文件 2077 2015-09-22 09:26 gifshow\gifshow.cpp
文件 4435 2015-09-22 10:51 gifshow\gifshow.dsp
文件 537 2015-09-22 09:26 gifshow\gifshow.dsw
文件 1335 2015-09-22 09:26 gifshow\gifshow.h
文件 66560 2015-09-22 10:51 gifshow\gifshow.ncb
文件 48640 2015-09-22 10:51 gifshow\gifshow.opt
文件 248 2015-09-22 10:51 gifshow\gifshow.plg
文件 5809 2015-09-22 10:49 gifshow\gifshow.rc
文件 9285 2015-09-22 10:48 gifshow\gifshowDlg.cpp
文件 1562 2015-09-22 10:35 gifshow\gifshowDlg.h
文件 33023 2001-11-18 13:30 gifshow\PictureEx.cpp
文件 10523 2001-11-18 13:30 gifshow\PictureEx.h
文件 3597 2015-09-22 09:26 gifshow\ReadMe.txt
文件 30980 2015-09-22 10:22 gifshow\res\child.gif
文件 1078 2015-09-22 09:26 gifshow\res\gifshow.ico
文件 399 2015-09-22 09:26 gifshow\res\gifshow.rc2
文件 29549 2015-09-22 10:22 gifshow\res\girl.gif
............此处省略9个文件信息
相关资源
- Visual C++串口编程详解
- Boost.Asio C++ 网络编程 中文版
- 数字图像处理的课程设计,图像处理
- C++ GUI PROGRAMMING WITH QT4 +原版书及源程
- KMP中文字符匹配算法的C++实现
- 简单web浏览器设计
- VC++热键,实现剪切板粘贴,指定的内
- vc++2010编译为静态库(.lib)的.vcxpro
- C++ 基本电梯
- VC6.0获取MAC地址
- 基于MFC的单机版五子棋含PPT详细答辩
- 聊天软件,用套接字编写,完整代码
- C++程序设计(第二版_吴乃陵_课后答案
- 基于C++和SQL Server开发的商品销售管理
- vsC++ mfc做的时钟
- MFC通讯录源码(毕业设计 课程设计
- OLSR路由协议实现代码
- C++学生宿舍管理系统
- 媒体库管理系统
- VC++ 21点游戏
- 煤气管理系统
- VC++编写的强大画板程序
- VC++ 绘图 折线图 饼图 矩形图非常全面
- BT协议详解与实现(c++ 完整版)
- c++实现自我删除
- c++五子棋程序
- C++控制台小游戏《突破重围》,有所
- 基于C++的虚拟串口通讯
- USB双向通信上位机VC++程序
- 台球游戏源代码
评论
共有 条评论