• 大小: 2.13MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-06
  • 语言: C/C++
  • 标签: C++  GIF动画  

资源简介

这是我从网上找的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个文件信息

评论

共有 条评论