资源简介
MFC c++ 编程13个例子 适合初学者学习
代码片段和文件信息
// Demo.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Demo.h“
#include “DemoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDemoApp
BEGIN_MESSAGE_MAP(CDemoApp CWinApp)
//{{AFX_MSG_MAP(CDemoApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDemoApp construction
CDemoApp::CDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDemoApp object
CDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDemoApp initialization
BOOL CDemoApp::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
CDemoDlg 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 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.cpp
文件 4123 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.dsp
文件 533 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.dsw
文件 1302 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.h
文件 693 2008-04-28 09:07 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.plg
文件 5119 2008-04-28 09:07 MFC界面编程实例13个\如何为控件添加工具提示\Demo\Demo.rc
文件 4280 2008-03-10 11:14 MFC界面编程实例13个\如何为控件添加工具提示\Demo\DemoDlg.cpp
文件 1403 2008-03-10 10:39 MFC界面编程实例13个\如何为控件添加工具提示\Demo\DemoDlg.h
文件 3543 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\ReadMe.txt
文件 1078 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\res\Demo.ico
文件 396 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\res\Demo.rc2
文件 682 2008-03-10 11:05 MFC界面编程实例13个\如何为控件添加工具提示\Demo\resource.h
文件 206 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\StdAfx.cpp
文件 1054 2008-02-18 09:46 MFC界面编程实例13个\如何为控件添加工具提示\Demo\StdAfx.h
文件 2035 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.cpp
文件 4123 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.dsp
文件 533 2007-12-06 16:53 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.dsw
文件 1302 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.h
文件 1655 2008-08-11 16:47 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.plg
文件 5177 2007-12-28 17:31 MFC界面编程实例13个\如何在列表控件中插入列\Demo\Demo.rc
文件 4455 2008-08-11 16:47 MFC界面编程实例13个\如何在列表控件中插入列\Demo\DemoDlg.cpp
文件 1308 2008-03-18 11:11 MFC界面编程实例13个\如何在列表控件中插入列\Demo\DemoDlg.h
文件 3543 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\ReadMe.txt
文件 1078 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\res\Demo.ico
文件 396 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\res\Demo.rc2
文件 682 2007-12-06 14:49 MFC界面编程实例13个\如何在列表控件中插入列\Demo\resource.h
文件 206 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\StdAfx.cpp
文件 1054 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入列\Demo\StdAfx.h
文件 2035 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入行\Demo\Demo.cpp
文件 4123 2007-12-06 14:48 MFC界面编程实例13个\如何在列表控件中插入行\Demo\Demo.dsp
............此处省略205个文件信息
相关资源
- MFC入门教程:1天深入浅出MFC
- listing_4.1.cpp
- 摄影测量空间后方交会程序合集,含
- 基于MFC的计算器(功能非常齐全:进
- VegaPrime_MFC
- 进程调度的设计与实现代码C++
- window平台下c++ 对zip压缩解压缩工程源
- MFC打开和保存图片
- 人工智能旅行商问题实验报告及C++源
- VC++ 基于IE内核功能很齐全的浏览器(
- MFC实现简单的COM
- c++实现最简单的COM
- (转)VC老版主薄荷用VC++6.0写的TCP
- C++ 矩阵乘并行算法实现
- c++ 贪食蛇控制台游戏代码,不闪屏功
- C++实现音频录音wav格式
- 唯一可译码判决准则 1使用的编程:
- x新安江模型c++
- C++停车场管理系统的完整代码.txt
- C++经典试题附答案
- c++数组查找函数实现
- c++递归实现数组遍历和阶乘函数
- c++内置函数
- c++函数模板使用
- c++写的平衡树数据结构
- 网络对战象棋游戏源代码
- C++ Primer Plus 6th书本源代码
- C++大学教程第九版教程内代码
- zw_MFCCombox自动提示.zip
- 计算无向图中桥的数量环算法超快
评论
共有 条评论