资源简介
仿真电梯的运行过程,具有可视化的界面,实现是基于VC的MFC
代码片段和文件信息
// diti.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “diti.h“
#include “ditiDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDitiApp
BEGIN_MESSAGE_MAP(CDitiApp CWinApp)
//{{AFX_MSG_MAP(CDitiApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDitiApp construction
CDitiApp::CDitiApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDitiApp object
CDitiApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDitiApp initialization
BOOL CDitiApp::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
CDitiDlg 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;
}
- 上一篇:家族成员信息管理系统
- 下一篇:c#与STK开发
相关资源
- mfc连连看代码
- 基于特征脸的人脸识别MFC+OpenCV
- cv::namedWindowGLFWwindow以及notepad嵌入MF
- wumpus世界(MFC编写)
- MFC写的对文件内容的DES加解密
- vs2010 MFC基础教程
- 基于MFC的登陆界面
- 基于Visual C++的屏幕录像完整源代码
- 通讯录MFC程序,C++大作业
- 数据结构课程设计,C++计算器MFC
- 一个简单的MFC的MDI程序-Sketcher
- mfc 任意多边形填充色
- VC开发MFC局域网屏幕监控系统完美版
- SNL语言编译器GUI VC++ 2008版 MFC实现可
- MFC邮件发送程序(C语言版带界面)
- 基于udp的socket编程
- MFC下TCP服务器
- MFC根据广播星历计算GPS卫星位置
- MFC 单文档 实现opengl 三维旋转 缩放
- MFC课程设计 职工信息管理系统含完整
- MFC可视化_迷宫算法_最短路径
- opencv图像处理MFC
- 图书管理系统mfc+sql
- MFC编写DDA画直线和圆
- mfc数值微分算法和Bresenham算法画直线
- 大家来找茬源码(MFC)
- C++实现的基于内容的图像检索
- vc++ 文本编辑器仿记事本MFC版
- MFC实现可编辑Excel文件
- USB2.0接口数据采集卡
评论
共有 条评论