资源简介
MFC MFC MFC MFC
VC VC VC VC
代码片段和文件信息
// maze.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “maze.h“
#include “mazeDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMazeApp
BEGIN_MESSAGE_MAP(CMazeApp CWinApp)
//{{AFX_MSG_MAP(CMazeApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMazeApp construction
CMazeApp::CMazeApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMazeApp object
CMazeApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMazeApp initialization
BOOL CMazeApp::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
CMazeDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 679828 2011-12-22 21:17 maze\maze.aps
文件 1496 2011-12-23 16:37 maze\maze.clw
文件 2035 2011-12-20 10:34 maze\maze.cpp
文件 4585 2011-12-20 18:56 maze\maze.dsp
文件 514 2011-12-20 10:34 maze\maze.dsw
文件 1324 2011-12-20 10:55 maze\maze.h
文件 82944 2011-12-23 16:37 maze\maze.ncb
文件 56832 2011-12-23 16:37 maze\maze.opt
文件 1835 2011-12-23 16:37 maze\maze.plg
文件 5553 2011-12-22 21:17 maze\maze.rc
文件 748 2011-12-20 13:00 maze\MazeBtn.cpp
文件 1154 2011-12-20 12:51 maze\MazeBtn.h
文件 10630 2011-12-23 16:36 maze\mazeDlg.cpp
文件 3155 2011-12-23 16:36 maze\mazeDlg.h
文件 3543 2011-12-20 10:34 maze\ReadMe.txt
文件 667648 2011-12-23 16:37 maze\Release\maze.exe
文件 9545 2011-12-23 16:37 maze\Release\maze.obj
文件 5694932 2011-12-23 16:37 maze\Release\maze.pch
文件 646304 2011-12-23 16:37 maze\Release\maze.res
文件 7862 2011-12-23 16:37 maze\Release\MazeBtn.obj
文件 22260 2011-12-23 16:37 maze\Release\mazeDlg.obj
文件 70696 2011-12-23 12:09 maze\Release\printScreen.png
文件 9397 2011-12-23 16:37 maze\Release\SizeDlg.obj
文件 786 2011-12-23 16:37 maze\Release\StdAfx.obj
文件 50176 2011-12-23 16:37 maze\Release\vc60.idb
文件 642462 2011-12-20 17:32 maze\res\2.bmp
文件 1270 2011-12-20 18:56 maze\res\bitmap1.bmp
文件 1078 2011-12-20 10:34 maze\res\maze.ico
文件 396 2011-12-20 10:34 maze\res\maze.rc2
文件 863 2011-12-22 21:17 maze\resource.h
............此处省略10个文件信息
- 上一篇:opencv图像处理MFC
- 下一篇:利用c语言实现FFT运算
相关资源
- 最短路径的篇论文及必经节点的遗传
- 迷宫MFC实现最短路径,有简单界面迷
- vc 最短路径演示程序源代码
- 动态分区存储管理的mfc可视化实现
- MFC可视化五子棋游戏
- MFC 图数据结构 最短路径
- 最短路径用Dijkstra算法实现的MFC编程
- VS2008环境下C++实现Dijkstra算法,查找有
- 求图中任意两点的最短路径和全部路
- c++ mfc 校园导航 最短路径计算
- c++数据结构课程设计-校园最短路径采
- QT c++ dijkstra最短路径工程源码
- 校园导游系统c语言代码及课程设计文
- 单台AGV最短路径规划,两台AGV路径自
- 基于最短路径的物流分配方法
- 最短路径查寻
- 公交车查询系统可换乘 MFC 自己做的
- Floyd最短路径程序(MFC)
- C语言实现最短路径规划
- mfc可视化程序设计大作业俄罗斯方块
- MFC校园网最短路径设计
- 数据结构迷宫算法源码+实验报告
- C语言-景区简易导航系统求最短路径
- 交通图 C语言实现 类似百度地图,实
- 最短路径算法—Bellman-Ford(贝尔曼-福
- Dijkstra单源最短路径代码 C/C++实现
- c语言--实现校园导航系统(最短路径
- 数据结构c语言实现求最短路径
- Dijkstra的三个
- Dijkstra最短路径算法C语言实现
评论
共有 条评论