资源简介
MFC绘制曲线图,可以多条曲线同时绘制,设置曲线颜色,设置描点形状等等,内含帮助文档,功能和用法一目了然。
代码片段和文件信息
// CPlot.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CPlot.h“
#include “MainFrm.h“
#include “CPlotDoc.h“
#include “CPlotView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCPlotApp
BEGIN_MESSAGE_MAP(CCPlotApp CWinApp)
//{{AFX_MSG_MAP(CCPlotApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCPlotApp construction
CCPlotApp::CCPlotApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCPlotApp object
CCPlotApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCPlotApp initialization
BOOL CCPlotApp::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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CCPlotDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CCPlotView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 78 2018-09-06 11:05 编译问题解决方法.txt
文件 2696 2003-07-21 13:57 CPlot\CHANGELOG.txt
目录 0 2003-07-21 13:34 CPlot\CPlot Sources\
文件 21123 2003-04-08 13:15 CPlot\CPlot Sources\Axis.cpp
文件 3274 2003-03-05 09:33 CPlot\CPlot Sources\Axis.h
文件 9923 2003-04-03 14:26 CPlot\CPlot Sources\AxisSettings.cpp
文件 2262 2003-03-03 09:25 CPlot\CPlot Sources\AxisSettings.h
文件 30208 2003-04-04 15:26 CPlot\CPlot Sources\Chart.cpp
文件 15880 2003-04-04 15:14 CPlot\CPlot Sources\Chart.h
文件 3080 2003-03-05 15:20 CPlot\CPlot Sources\ChartData.cpp
文件 1682 2003-03-05 15:20 CPlot\CPlot Sources\ChartData.h
文件 3373 2003-04-04 15:49 CPlot\CPlot Sources\ColorControl.cpp
文件 2284 2003-03-03 08:57 CPlot\CPlot Sources\ColorControl.h
文件 0 2003-01-03 13:53 CPlot\CPlot Sources\ColorTables.h
文件 5023 2003-03-28 17:31 CPlot\CPlot Sources\CPlotResource.h
目录 0 2003-07-21 13:34 CPlot\CPlot Sources\CPlotResources\
文件 69712 2003-03-18 13:36 CPlot\CPlot Sources\CPlotResources\CPlotResources.aps
目录 0 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\
文件 768 2003-03-11 12:29 CPlot\CPlot Sources\CPlotResources\res\16 LEVEL.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\B-W LINEAR.bin
文件 768 2003-03-11 12:29 CPlot\CPlot Sources\CPlotResources\res\Beach.bin
文件 768 2003-03-11 12:29 CPlot\CPlot Sources\CPlotResources\res\Blue - Pastel - Red.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Blue Waves.bin
文件 768 2003-03-11 12:29 CPlot\CPlot Sources\CPlotResources\res\BLUE-RED.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Eos A.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Eos B.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\GREEN-PINK.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\GRN-RED-BLU-WHT.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Hardcandy.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Haze.bin
文件 768 2003-03-11 12:49 CPlot\CPlot Sources\CPlotResources\res\Hue Sat Lightness 1.bin
............此处省略277个文件信息
- 上一篇:仿QQ聊天 MFC 实现
- 下一篇:CMAC(AES128)Verilog实现
相关资源
- 仿QQ聊天 MFC 实现
- PN532-mfoc-mfcuk-GUI_V2.1.rar
- mfcc,,可输入自己的wav文件运行
- C++与js相互调用
- VS2013开发的MFC下的Modbus RTU
- c++密度据类MFC可视化
- MFC Afxcmn.h
- 基于OpenDDS的MFC界面程序
- VC/MFC实现简单的Http服务器可访问图片
- MFC封装的MySQL操作类
- 通过MFC和OpenGL实现点云数据的提取和
- MFC画二维动态图表
- MFC规则DLL(MFC Regular DLL)添加DLLMain(
- C++MFC XP样式按钮
- MFC中使用ADO连接SQL Server 2008 R2
- MFC多线程编程示例47598
- MFC做的静态文本字幕滚动
- 获取屏幕点的颜色 MFC Dialog
- MFC一个漂亮的登录框带小键盘密码输
- 软件工程课程设计—基于VS2010的聊天
- 即时检测USB设备插拔
- MFC DEM内插登高线!!!
- DEM内插等高线源代码 mfc
- 水流界面追踪VOF模型的CPP源码
- MFC文档视图指针相获取
- graphics+winbgi
- 一个五子棋游戏的MFC实现源码已判禁
- 使用MFC ODBC连接数据库(access)
- MFC创建向导
- 用MFC+mysql做的培训中心收费系统
评论
共有 条评论