资源简介
通常我们都是使用MFC的资源视图在对话框或FormView上通过拖拽的方式添加按钮,这里我们利用CButton对象来动态创建按钮,并对按钮添加单击消息响应。如果你有任何疑问,欢迎和我讨论。
代码片段和文件信息
// DBN.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DBN.h“
#include “DBNDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDBNApp
BEGIN_MESSAGE_MAP(CDBNApp CWinApp)
//{{AFX_MSG_MAP(CDBNApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDBNApp construction
CDBNApp::CDBNApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDBNApp object
CDBNApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDBNApp initialization
BOOL CDBNApp::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
CDBNDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35244 2012-08-26 18:58 DBN\DBN.APS
文件 1001 2012-08-26 19:14 DBN\DBN.clw
文件 2021 2012-08-26 18:58 DBN\DBN.cpp
文件 4109 2012-08-26 19:14 DBN\DBN.dsp
文件 529 2012-08-26 18:58 DBN\DBN.dsw
文件 1291 2012-08-26 18:58 DBN\DBN.h
文件 5146 2012-08-26 18:58 DBN\DBN.rc
文件 4405 2012-08-26 19:14 DBN\DBNDlg.cpp
文件 1376 2012-08-26 19:14 DBN\DBNDlg.h
文件 3525 2012-08-26 18:58 DBN\ReadMe.txt
文件 1078 2012-08-26 18:58 DBN\res\DBN.ico
文件 395 2012-08-26 18:58 DBN\res\DBN.rc2
文件 528 2012-08-26 18:58 DBN\Resource.h
文件 205 2012-08-26 18:58 DBN\StdAfx.cpp
文件 1054 2012-08-26 18:58 DBN\StdAfx.h
目录 0 2012-08-26 18:58 DBN\res
目录 0 2012-08-26 19:16 DBN
----------- --------- ---------- ----- ----
61907 17
- 上一篇:c++版遗传算法基本算法
- 下一篇:基于Linux消息队列的简易聊天室(C语言)()
相关资源
-
mfc通过xm
l文件生成word文档 - 任务管理器MFC实现
- MFC的·绘图代码,模仿CAD的界面是我找
- 将彩色图片转换为灰度图片mfc实现
- MFC基于多线程的聊天程序用了winsock套
- SiamFCdemo运行所需stats.mat文件
- 超市管理系统(MFC编写
- MFC五子棋,本地,网络,人机
- 银行家算法 MFC实现
- MFC对话框标题栏的隐藏和高度设置
- easysize MFC对话框大小自动调整
- 基于无限射频卡的饭卡充值系统MFC
- MFC modBus 读写串口
- MFC通过windowsAPI控制计算机关机,注销
- 在MFC中嵌入cef浏览器demo
- mfc安装全局钩子,显示窗口的标题
- VC/MFC 布局类
- MFC 动态数据显示控件
- DX_MFC框架
- 斗地主MFC源代码
- MFC对话框打印及预览功能完美版
- MFC实现可拖动的按钮
- 声纹识别MATLAB源程序全代码
- MFC 计算文件MD5码 VC++
- c++编的mfc 贪吃蛇游戏
- mfc 对话框 创建进度条 显示当前进度
- MFC操作Excel表,excel.hexcel.cpp源码
- 基于mfc tcp 文件传输 源代码
- MFC(C++)程序与文件关联后缀名含C
- MFC铅笔直线矩形菱形 算法
评论
共有 条评论