资源简介
在dialog模式下,创建 MFC OpenGL子窗口,非SDI MDI
代码片段和文件信息
// fast.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “fast.h“
#include “fastDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFastApp
BEGIN_MESSAGE_MAP(CFastApp CWinApp)
//{{AFX_MSG_MAP(CFastApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CFastApp construction
CFastApp::CFastApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFastApp object
CFastApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFastApp initialization
BOOL CFastApp::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
CFastDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2035 2001-07-27 14:13 fast.cpp
文件 4194 2001-07-27 14:41 fast.dsp
文件 533 2001-07-27 14:13 fast.dsw
文件 1302 2001-07-27 14:13 fast.h
文件 4435 2001-07-27 14:40 fast.rc
文件 2820 2001-07-27 15:45 fastDlg.cpp
文件 1331 2001-07-27 14:25 fastDlg.h
文件 3487 2001-07-27 14:57 OpenGL.cpp
文件 1126 2001-07-27 14:17 OpenGL.h
文件 3543 2001-07-27 14:13 ReadMe.txt
文件 1078 2001-07-27 14:13 res\fast.ico
文件 396 2001-07-27 14:13 res\fast.rc2
文件 437 2001-07-27 14:13 Resource.h
文件 206 2001-07-27 14:13 StdAfx.cpp
文件 1054 2001-07-27 14:13 StdAfx.h
文件 2097227 2001-07-27 15:59 fast.exe
相关资源
- MFC实现计算器 vC++
- VC++点阵字生成器(MFC)
- 利用MFC实现简单的住房系统
- Socket异步通信 MFC
- msado.dll用于ado
- 高斯混合模型直观实现
- 基于TCP的聊天室c++、MFC
- MFC图像处理荧光检测算法代码
- vc++简易图形编辑器MFC
- 第三方串口类
- MFCJunior U盘SD卡寿命测试工具
- 控制台嵌入MFC
- Visual C++ MFC Web 浏览器
- 文件传输,用MFC实现
- MFC漂亮的进度条
- VC++ MFC 如何用 CZip CUnzip类压缩解压缩
- MFC添加进度条
- MFC图元的组合,拆分,移动源代码
- Vc++6.0MFC入门教程,很好的资源。
- VC++6.0 MFC 超简易计算器
- MFC开发的与服务器通讯程序
- 用MFC画直线椭圆矩型可选择线条颜色
- MFC交通灯控制车辆运行的模拟程序
- DES加密算法MFC实现
- MFC 之 TabCtrl
- DES加密和RSA加密程序mfc源代码
- 实现三维坐标变换、投影变换,C++实
- MFC实现文件传输
- 生命游戏 mfc版本 环境vs2008
- MFC CComboBox 实现自动补全
评论
共有 条评论