资源简介
本程序用了简单的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 li
文件 2112 2010-04-12 15:44 li
文件 519 2010-04-12 15:44 li
文件 6826 2010-04-27 18:00 li
文件 7275 2010-04-27 15:00 li
文件 1413 2010-05-04 20:48 li
文件 1407 2010-04-27 18:01 li
文件 20624 2010-04-27 17:58 li
文件 2782 2010-04-27 15:04 li
文件 885 2010-04-27 13:02 li
文件 217 2010-04-09 09:55 li
文件 4260 2010-04-07 10:47 li
文件 54934 2010-04-07 10:50 li
文件 386622 2010-04-07 10:50 li
文件 1440054 2010-04-07 15:12 li
文件 810054 2010-04-08 16:58 li
文件 21630 2003-07-23 17:52 li
文件 399 2010-04-07 10:47 li
文件 360056 2010-04-27 14:06 li
文件 9656 2010-04-14 13:11 li
文件 238 2010-04-12 15:51 li
文件 360056 2010-04-14 17:04 li
文件 1689 2010-04-27 14:06 li
文件 208 2010-04-07 10:47 li
文件 1977 2010-04-07 11:37 li
文件 1432 2010-04-07 10:47 li
文件 890 2010-04-07 10:47 li
..A..H. 43008 2010-05-04 20:48 li
目录 0 2010-05-04 20:45 li
目录 0 2010-05-04 20:49 li
............此处省略4个文件信息
相关资源
- MFC界面库 GuiToolKit
- 一个获取磁盘信息MFC
- MFC实现打开外部程序
- 数值计算 c代码及简单的MFC界面
- VC6.0+MFC+USBCAN上位机通信控制
- 一个用mfc编写的拼图游戏
- MFC制作画板...
- mfc写的仿QQ的聊天软件
- 教你用MFC做计算器
- vs2008 CRT运行库MFC运行库Debug、Release
- vc6.0实现的局域网聊天室MFC+SOCKRT
- VC++ MFC科学计算器,含代码和整个工程
- VC MFC实现橡皮筋类(鼠标拖动框选)
- pl/0语言的编译器
- VC6.0贪吃蛇MFC
- MFC编写文件传输
- C++MFC作业彩票机-模拟双色球
- MFC 绘图 键盘控制图片移动
- 使用MFC实现的扫雷
- 图书管理系统MFC版
- MFC 界面库Skin 破解版已用于实际项目
- 完整的图书管理系统MFC编写
- 基于MFC的简单的图书管理系统
- 图形学实验 多边形的扫描转换 扫面线
- 二叉排序树 建立 查询 删除
- opencv结合MFC进行人脸检测
- MFC TCP/IP 网络 多人聊天室
- MFC俄罗斯方块源码
- VC6下开发的des邮件加密系统
- MFC 拖曳文件获得文件路径
评论
共有 条评论