资源简介
High-speed Charting Control--MFC绘制图表(折线图、饼图、柱形图)控件,CodeProject中原文中的demo
代码片段和文件信息
// ChartDemo.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ChartDemo.h“
#include “ChartDemoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChartDemoApp
BEGIN_MESSAGE_MAP(CChartDemoApp CWinApp)
//{{AFX_MSG_MAP(CChartDemoApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CChartDemoApp construction
CChartDemoApp::CChartDemoApp()
{
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CChartDemoApp object
CChartDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CChartDemoApp initialization
BOOL CChartDemoApp::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.
#if _MFC_VER < 0x0700
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
#else
InitCommonControls();
CWinApp::InitInstance();
#endif
CChartDemoDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}
// 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 2010-07-13 20:08 ChartDemo\
目录 0 2010-07-13 20:09 ChartDemo\ChartCtrl\
目录 0 2010-07-13 20:08 ChartDemo\ChartCtrl\.svn\
文件 3966 2010-07-10 11:56 ChartDemo\ChartCtrl\.svn\all-wcprops
文件 7834 2010-07-10 11:56 ChartDemo\ChartCtrl\.svn\entries
文件 2 2009-03-07 12:19 ChartDemo\ChartCtrl\.svn\format
目录 0 2009-03-07 12:19 ChartDemo\ChartCtrl\.svn\prop-ba
目录 0 2009-03-07 12:19 ChartDemo\ChartCtrl\.svn\props\
目录 0 2010-07-10 11:56 ChartDemo\ChartCtrl\.svn\text-ba
文件 19260 2009-12-23 12:05 ChartDemo\ChartCtrl\.svn\text-ba
文件 17455 2009-12-23 12:05 ChartDemo\ChartCtrl\.svn\text-ba
文件 3742 2009-04-04 10:54 ChartDemo\ChartCtrl\.svn\text-ba
文件 3155 2009-12-21 11:39 ChartDemo\ChartCtrl\.svn\text-ba
文件 3142 2009-12-22 12:02 ChartDemo\ChartCtrl\.svn\text-ba
文件 3815 2010-01-17 14:13 ChartDemo\ChartCtrl\.svn\text-ba
文件 9777 2010-01-03 12:00 ChartDemo\ChartCtrl\.svn\text-ba
文件 6911 2009-10-25 17:22 ChartDemo\ChartCtrl\.svn\text-ba
文件 7082 2009-12-28 11:28 ChartDemo\ChartCtrl\.svn\text-ba
文件 4320 2009-12-20 12:44 ChartDemo\ChartCtrl\.svn\text-ba
文件 1757 2009-02-08 12:48 ChartDemo\ChartCtrl\.svn\text-ba
文件 1972 2009-03-08 18:14 ChartDemo\ChartCtrl\.svn\text-ba
文件 31179 2009-12-28 11:32 ChartDemo\ChartCtrl\.svn\text-ba
文件 21115 2009-12-28 11:32 ChartDemo\ChartCtrl\.svn\text-ba
文件 1483 2009-02-17 20:35 ChartDemo\ChartCtrl\.svn\text-ba
文件 3819 2010-01-21 20:31 ChartDemo\ChartCtrl\.svn\text-ba
文件 10516 2009-12-26 18:41 ChartDemo\ChartCtrl\.svn\text-ba
文件 5216 2009-03-07 13:01 ChartDemo\ChartCtrl\.svn\text-ba
文件 2438 2009-02-03 21:09 ChartDemo\ChartCtrl\.svn\text-ba
文件 2189 2009-03-08 18:19 ChartDemo\ChartCtrl\.svn\text-ba
文件 3375 2009-05-18 21:00 ChartDemo\ChartCtrl\.svn\text-ba
文件 2923 2009-03-07 20:43 ChartDemo\ChartCtrl\.svn\text-ba
............此处省略328个文件信息
- 上一篇:数据结构 哈夫曼树C语言源代码
- 下一篇:ChartCtrl_doxygen
评论
共有 条评论