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

资源简介

本程序主要是展示切水果中鼠标跟随特效,仅仅提供参考,请大家多提意见!环境是vc6.0。

资源截图

代码片段和文件信息

// Fruit.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Fruit.h“

#include “MainFrm.h“
#include “FruitDoc.h“
#include “FruitView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CFruitApp

BEGIN_MESSAGE_MAP(CFruitApp CWinApp)
//{{AFX_MSG_MAP(CFruitApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// 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
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFruitApp construction

CFruitApp::CFruitApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CFruitApp object

CFruitApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFruitApp initialization

BOOL CFruitApp::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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CFruitDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CFruitView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////

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

     文件    6279234  2012-07-13 09:21  Fruit\Debug\Fruit.exe

     文件    5232564  2012-06-29 13:23  Fruit\Fruit.aps

     文件       2211  2012-06-29 17:18  Fruit\Fruit.clw

     文件       4191  2012-06-26 14:10  Fruit\Fruit.cpp

     文件       4860  2012-06-29 17:18  Fruit\Fruit.dsp

     文件        516  2012-06-26 14:10  Fruit\Fruit.dsw

     文件       1345  2012-06-26 14:10  Fruit\Fruit.h

     文件      82944  2012-07-13 09:44  Fruit\Fruit.ncb

     文件      54784  2012-07-13 09:44  Fruit\Fruit.opt

     文件       1149  2012-07-13 09:21  Fruit\Fruit.plg

     文件      11939  2012-06-29 13:23  Fruit\Fruit.rc

     文件       1722  2012-06-26 14:10  Fruit\FruitDoc.cpp

     文件       1464  2012-06-26 14:10  Fruit\FruitDoc.h

     文件       6974  2012-07-13 09:21  Fruit\FruitView.cpp

     文件       2680  2012-06-29 13:25  Fruit\FruitView.h

     文件       2701  2012-06-27 14:57  Fruit\MainFrm.cpp

     文件       1581  2012-06-26 14:10  Fruit\MainFrm.h

     文件       4287  2012-06-26 14:10  Fruit\ReadMe.txt

     文件    3872946  2012-06-26 15:14  Fruit\res\BKfruit.bmp

     文件       1078  2012-06-26 14:10  Fruit\res\Fruit.ico

     文件        397  2012-06-26 14:10  Fruit\res\Fruit.rc2

     文件       1078  2012-06-26 14:10  Fruit\res\FruitDoc.ico

     文件     580854  2012-06-29 10:58  Fruit\res\Target.bmp

     文件     580854  2012-06-29 11:04  Fruit\res\Target2.bmp

     文件       1078  2012-06-26 14:10  Fruit\res\Toolbar.bmp

     文件      84054  2012-06-29 12:39  Fruit\res\x1.bmp

     文件      69174  2012-06-29 13:23  Fruit\res\x7.bmp

     文件        817  2012-06-29 13:23  Fruit\resource.h

     文件        207  2012-06-26 14:10  Fruit\StdAfx.cpp

     文件       1054  2012-06-26 14:10  Fruit\StdAfx.h

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

评论

共有 条评论