资源简介
MFC 子对话框向父对话框 Edit内容的同步
代码片段和文件信息
// One.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “One.h“
#include “OneDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COneApp
BEGIN_MESSAGE_MAP(COneApp CWinApp)
//{{AFX_MSG_MAP(COneApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// COneApp construction
COneApp::COneApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only COneApp object
COneApp theApp;
/////////////////////////////////////////////////////////////////////////////
// COneApp initialization
BOOL COneApp::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
COneDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-03-29 13:55 One\
目录 0 2011-03-29 13:55 One\Debug\
文件 5662 2011-03-29 13:55 One\Debug\BuildLog.htm
文件 60 2011-03-29 13:55 One\Debug\mt.dep
文件 68096 2011-03-29 13:55 One\Debug\One.exe
文件 920 2011-03-29 11:02 One\Debug\One.exe.em
文件 984 2011-03-29 11:02 One\Debug\One.exe.em
文件 861 2011-03-29 13:55 One\Debug\One.exe.intermediate.manifest
文件 1050232 2011-03-29 13:55 One\Debug\One.ilk
文件 21272 2011-03-29 13:21 One\Debug\One.obj
文件 24838144 2011-03-29 11:58 One\Debug\One.pch
文件 3492864 2011-03-29 13:55 One\Debug\One.pdb
文件 2560 2011-03-29 12:18 One\Debug\One.res
文件 41051 2011-03-29 13:45 One\Debug\OneDlg.obj
文件 465147 2011-03-29 11:58 One\Debug\StdAfx.obj
文件 26062 2011-03-29 13:55 One\Debug\Two.obj
文件 904192 2011-03-29 13:55 One\Debug\vc90.idb
文件 2002944 2011-03-29 13:55 One\Debug\vc90.pdb
文件 37596 2011-03-29 12:17 One\One.aps
文件 971 2010-04-28 10:30 One\One.clw
文件 2021 2010-04-28 09:09 One\One.cpp
文件 4119 2010-04-28 09:55 One\One.dsp
文件 512 2010-04-28 09:09 One\One.dsw
文件 1319 2011-03-29 12:01 One\One.h
文件 12733440 2011-03-29 16:07 One\One.ncb
文件 49664 2010-04-28 10:30 One\One.opt
文件 880 2010-04-28 10:30 One\One.plg
文件 5483 2011-03-29 12:17 One\One.rc
文件 871 2011-03-29 11:02 One\One.sln
文件 14336 2011-03-29 16:07 One\One.suo
文件 7388 2011-03-29 11:38 One\One.vcproj
............此处省略21个文件信息
相关资源
- 计算器 3.0 源码 vs2008 MFC vc++
- Visual C++MFC编程(通过85个全面讲述了
- MFC操作离线地图源程序
- MFC串口通讯接受数据双缓冲画波形图
- 贪吃蛇mfc版
- 通过MFC对SQLite进行操作
- 通过MFC实现数码管显示数字
- MFC实现向TXT中读写数据
- MFCWinPcap编写一个嗅探器.zip
- MFC实现FTP客户端
- MFC Opencv显示图片,图片类型为Mat
- 基于UDP的Socket 通信源码VC++ 2010 MFC
- 基于VLC的MFC播放器 完整版
- Alpha-Beta剪枝算法一字棋源码及实验报
- MFC扫雷程序设计完整源码,文档
- 利用MFC进行多边形的绘制
- A*算法求解八数码--演示程序MFC
- MFCquxian.rar
- 医院管理系统_VC++源码
- DLL中封装Qt窗口和控件,并使用MFC和
- MFC问卷调查选择统计程序
- 侯俊杰《深入浅出MFC》简体版第二版
- Ymodem协议 完整MFC工程C++实现
- vc++-MFC画圆
- 基于winpcap的ARP发送程序
- HighSpeedChart动态绘图
- MFC实现的画多边形程序
- vs mfc 画图程序
- MFC基于对话框的交互式画图程序橡皮
- 21天学通C++(第五版) vs2008程序打包
评论
共有 条评论