资源简介
利用C++MFC实现了简单的扫雷系统 包含所有报告以及答辩PPT 很好用的哦
代码片段和文件信息
// luliang.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “luliang.h“
#include “MainFrm.h“
#include “luliangDoc.h“
#include “luliangView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CLuliangApp
BEGIN_MESSAGE_MAP(CLuliangApp CWinApp)
//{{AFX_MSG_MAP(CLuliangApp)
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)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLuliangApp construction
CLuliangApp::CLuliangApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CLuliangApp object
CLuliangApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CLuliangApp initialization
BOOL CLuliangApp::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(CLuliangDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CLuliangView));
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->SetWindowPos(NULL 350100 312460 SWP_SHOWWINDOW|SWP_DRAWframe);
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 162 2007-09-08 17:36 陆亮扫雷\说明.txt
文件 102400 2007-09-07 21:54 陆亮扫雷\答辩PPT\课程设计.ppt
目录 0 2008-02-29 20:21 陆亮扫雷\答辩PPT
文件 60648 2007-12-24 23:17 陆亮扫雷\源代码\luliang.aps
文件 2583 2008-01-26 17:23 陆亮扫雷\源代码\luliang.clw
文件 4212 2008-01-26 17:23 陆亮扫雷\源代码\luliang.cpp
文件 4845 2007-09-06 18:28 陆亮扫雷\源代码\luliang.dsp
文件 539 2007-09-02 09:44 陆亮扫雷\源代码\luliang.dsw
文件 1367 2007-09-02 09:44 陆亮扫雷\源代码\luliang.h
文件 197632 2008-01-26 17:23 陆亮扫雷\源代码\luliang.ncb
文件 56832 2008-01-26 17:23 陆亮扫雷\源代码\luliang.opt
文件 2050 2008-01-26 17:23 陆亮扫雷\源代码\luliang.plg
文件 11308 2007-09-08 16:24 陆亮扫雷\源代码\luliang.rc
文件 1762 2007-09-02 09:44 陆亮扫雷\源代码\luliangDoc.cpp
文件 1486 2007-09-02 09:44 陆亮扫雷\源代码\luliangDoc.h
文件 10440 2007-09-08 20:28 陆亮扫雷\源代码\luliangView.cpp
文件 3318 2007-09-06 20:58 陆亮扫雷\源代码\luliangView.h
文件 1989 2007-09-08 20:28 陆亮扫雷\源代码\MainFrm.cpp
文件 1427 2007-09-08 20:28 陆亮扫雷\源代码\MainFrm.h
文件 4019 2007-09-02 09:44 陆亮扫雷\源代码\ReadMe.txt
文件 959 2007-09-06 20:58 陆亮扫雷\源代码\resource.h
文件 1109 2007-09-06 20:56 陆亮扫雷\源代码\SetMineArea.cpp
文件 1268 2007-09-06 20:56 陆亮扫雷\源代码\SetMineArea.h
文件 209 2007-09-02 09:44 陆亮扫雷\源代码\StdAfx.cpp
文件 1054 2007-09-02 09:44 陆亮扫雷\源代码\StdAfx.h
文件 12718 2007-09-08 16:24 陆亮扫雷\源代码\res\bitmap1.bmp
文件 7334 2007-09-06 23:38 陆亮扫雷\源代码\res\bitmap_w.bmp
文件 12438 2007-09-06 18:19 陆亮扫雷\源代码\res\bmp00001.bmp
文件 1078 2007-09-02 09:44 陆亮扫雷\源代码\res\luliang.ico
文件 399 2007-09-02 09:44 陆亮扫雷\源代码\res\luliang.rc2
............此处省略23个文件信息
- 上一篇:哈夫曼树的应用和实现 C语言
- 下一篇:c++ 实现matlab smooth 函数
相关资源
- c++ 实现matlab smooth 函数
- C++文件加密系统
- 贝塞尔曲面 vc++ opengl
- alphabeta剪枝算法的C++实现下棋程序
- 操作系统的理发师问题解决文件打包
- C++11标准发布文档
- c++ MODBUS串行通信程序
- 成组链接法UNIXC++
- 维特比译码+卷积码编码程序C/C++实现
- 学分管理系统 c++
- C++五子棋源码有AI,先手禁手
- 双语版C++苏小红课后习题参考
- C++大作业之学生管理系统图表
- 基于Windows Socket的安全通信(C++实现)
- 蓝桥杯青少组C++赛前集训包.pdf
- 11个常用OpenCV+C++图像处理
- 吃豆人 c++ 源程序
- 求公式的主合取范式和主析取范式
- C语言设计一元稀疏多项式课程设计
- C++实现MATLAB的filter函数
- 实验室设备管理系统C++
- C++课程设计之简易英汉字典
- 传热学非稳态热传导问题网格划分数
- 学分管理系统c++课程设计
- 阿伦方差的C++ 版本
- 如何在VC++ 6.0创建RTX项目
- utf8编码解码的纯C++代码
- visualc++下位机温度测量串口通信与实
- 课程设计 c语言 学生选课系统
- c++写的OpenGL程序透明金字塔有加上光
评论
共有 条评论