资源简介
在VC中也有进度条的控件,但它不能显示文字。今有一CProgressCtrl类的派生类CTextProgressCtrl就有完成这样的工作。
代码片段和文件信息
// ProgressDemo.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ProgressDemo.h“
#include “ProgressDemoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CProgressDemoApp
BEGIN_MESSAGE_MAP(CProgressDemoApp CWinApp)
//{{AFX_MSG_MAP(CProgressDemoApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CProgressDemoApp construction
CProgressDemoApp::CProgressDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CProgressDemoApp object
CProgressDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CProgressDemoApp initialization
BOOL CProgressDemoApp::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
CProgressDemoDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 110731 2014-05-08 09:21 ProgressDemo\Debug\ProgressDemo.exe
文件 286612 2014-05-08 09:21 ProgressDemo\Debug\ProgressDemo.ilk
文件 15009 2014-04-12 11:08 ProgressDemo\Debug\ProgressDemo.obj
文件 5494584 2014-04-12 11:08 ProgressDemo\Debug\ProgressDemo.pch
文件 410624 2014-05-08 09:21 ProgressDemo\Debug\ProgressDemo.pdb
文件 2736 2014-04-12 11:28 ProgressDemo\Debug\ProgressDemo.res
文件 26909 2014-04-12 11:08 ProgressDemo\Debug\ProgressDemoDlg.obj
文件 106199 2014-04-12 11:08 ProgressDemo\Debug\StdAfx.obj
文件 36621 2014-05-08 09:21 ProgressDemo\Debug\TextProgressCtrl.obj
文件 214016 2014-05-08 09:21 ProgressDemo\Debug\vc60.idb
文件 364544 2014-05-08 09:21 ProgressDemo\Debug\vc60.pdb
文件 21368 2014-04-18 21:36 ProgressDemo\ProgressDemo.aps
文件 1271 2014-05-08 09:19 ProgressDemo\ProgressDemo.clw
文件 2147 2003-05-07 22:40 ProgressDemo\ProgressDemo.cpp
文件 4411 2003-05-07 23:34 ProgressDemo\ProgressDemo.dsp
文件 547 2003-05-07 22:40 ProgressDemo\ProgressDemo.dsw
文件 1390 2003-05-07 22:40 ProgressDemo\ProgressDemo.h
文件 54784 2014-05-07 23:00 ProgressDemo\ProgressDemo.opt
文件 1237 2014-05-08 09:21 ProgressDemo\ProgressDemo.plg
文件 5530 2014-04-12 11:28 ProgressDemo\ProgressDemo.rc
文件 4638 2003-05-07 23:16 ProgressDemo\ProgressDemoDlg.cpp
文件 1484 2003-05-07 23:15 ProgressDemo\ProgressDemoDlg.h
文件 1078 2003-05-07 22:40 ProgressDemo\res\ProgressDemo.ico
文件 404 2003-05-07 22:40 ProgressDemo\res\ProgressDemo.rc2
文件 736 2003-05-07 23:16 ProgressDemo\Resource.h
文件 214 2003-05-07 22:40 ProgressDemo\StdAfx.cpp
文件 1054 2003-05-07 22:40 ProgressDemo\StdAfx.h
文件 8929 2014-05-07 23:00 ProgressDemo\TextProgressCtrl.cpp
文件 2414 2003-05-07 23:16 ProgressDemo\TextProgressCtrl.h
目录 0 2014-05-08 09:21 ProgressDemo\Debug
............此处省略5个文件信息
相关资源
- 通讯录MFC完整版
- MFC各种按钮美化源码
- MFC宿舍管理系统C++含access数据库
- mfc mp3播放器
- MFC聊天室含源代码.rar
- MFC课程设计VC++超市管理系统
- MFC 圆弧算法的实现
- C++MFC日程管理系统
- MFC+OPENCV摄像机标定程序
- 基于MFC的bmp图像处理268237
- MFC实现画板
- MFC公路导航程序
- 利用MFC绘制B样条曲线
- 基于MFC的模拟时钟程序
- MFC画图小程序
- MFC时钟程序
- MFC简单图书馆管理系统
- VC++6.0 MFC AGV绘轨迹
- VS2010_MFC完全版全五十四章从入门到精
- 用matlab编的基于DTW和MFC算法的语音识
- 用MFC实现的简单qq聊天
- c++指纹识别系统
- DemoHttpMFC.zip
- VC仿Xp计算器
- 功能全面的mfc Web浏览器
- MFC银行管理系统
- GMFC pro v3.081 軟件與破解檔
- mfc职员信息管理系统所有源代码
- MFC入门个人简历
- VC++ 推箱子游戏源代码(双缓存版)
评论
共有 条评论