• 大小: 494KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-13
  • 语言: C/C++
  • 标签: MFC  对话框  

资源简介

在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

评论

共有 条评论