• 大小: 1.83MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-28
  • 语言: C/C++
  • 标签: 连连看  MFC  

资源简介

本程序用了简单的MFC知识,只是学习过程中的小小的练习,有什么不足希望大家指出,先谢谢了。本程序是基于MFC的连连看小游戏。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “linkGame.h“
#include “linkGameDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// ClinkGameApp

BEGIN_MESSAGE_MAP(ClinkGameApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// ClinkGameApp construction

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


// The one and only ClinkGameApp object

ClinkGameApp theApp;


// ClinkGameApp initialization

BOOL ClinkGameApp::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles.  Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::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
// 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“));

ClinkGameDlg dlg;
m_pMainWnd = &dlg;
INT_PTR 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;
}


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

     文件    3482668  2010-04-27 18:00  linkGame\linkGame\linkGame.aps

     文件       2112  2010-04-12 15:44  linkGame\linkGame\linkGame.cpp

     文件        519  2010-04-12 15:44  linkGame\linkGame\linkGame.h

     文件       6826  2010-04-27 18:00  linkGame\linkGame\linkGame.rc

     文件       7275  2010-04-27 15:00  linkGame\linkGame\linkGame.vcproj

     文件       1413  2010-05-04 20:48  linkGame\linkGame\linkGame.vcproj.shinn-PC.shinn.user

     文件       1407  2010-04-27 18:01  linkGame\linkGame\linkGame.vcproj.SHINN.Administrator.user

     文件      20624  2010-04-27 17:58  linkGame\linkGame\linkGameDlg.cpp

     文件       2782  2010-04-27 15:04  linkGame\linkGame\linkGameDlg.h

     文件        885  2010-04-27 13:02  linkGame\linkGame\MyDefine.h

     文件        217  2010-04-09 09:55  linkGame\linkGame\MyFunction.cpp

     文件       4260  2010-04-07 10:47  linkGame\linkGame\ReadMe.txt

     文件      54934  2010-04-07 10:50  linkGame\linkGame\res\3Dframes.bmp

     文件     386622  2010-04-07 10:50  linkGame\linkGame\res\animal.bmp

     文件    1440054  2010-04-07 15:12  linkGame\linkGame\res\background.bmp

     文件     810054  2010-04-08 16:58  linkGame\linkGame\res\beginBack.bmp

     文件      21630  2003-07-23 17:52  linkGame\linkGame\res\linkGame.ico

     文件        399  2010-04-07 10:47  linkGame\linkGame\res\linkGame.rc2

     文件     360056  2010-04-27 14:06  linkGame\linkGame\res\Lose.bmp

     文件       9656  2010-04-14 13:11  linkGame\linkGame\res\Resort.bmp

     文件        238  2010-04-12 15:51  linkGame\linkGame\res\toolbar1.bmp

     文件     360056  2010-04-14 17:04  linkGame\linkGame\res\Win.bmp

     文件       1689  2010-04-27 14:06  linkGame\linkGame\resource.h

     文件        208  2010-04-07 10:47  linkGame\linkGame\stdafx.cpp

     文件       1977  2010-04-07 11:37  linkGame\linkGame\stdafx.h

     文件       1432  2010-04-07 10:47  linkGame\linkGame\targetver.h

     文件        890  2010-04-07 10:47  linkGame\linkGame.sln

    ..A..H.     43008  2010-05-04 20:48  linkGame\linkGame.suo

     目录          0  2010-05-04 20:45  linkGame\linkGame\res

     目录          0  2010-05-04 20:49  linkGame\linkGame

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

评论

共有 条评论