• 大小: 121KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-22
  • 语言: C/C++
  • 标签: MFC  

资源简介

MFC mschart绘制曲线、饼图、柱状小程序 VC、C/C++、MFC、曲线绘图

资源截图

代码片段和文件信息

// Demo.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Demo.h“

#include “MainFrm.h“
#include “DemoDoc.h“
#include “DemoView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDemoApp

BEGIN_MESSAGE_MAP(CDemoApp CWinApp)
//{{AFX_MSG_MAP(CDemoApp)
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)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDemoApp construction

CDemoApp::CDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CDemoApp object

CDemoApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CDemoApp initialization

BOOL CDemoApp::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(CDemoDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CDemoView));
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;
}


/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2017  2010-06-11 18:08  mschart\Demo.clw

     文件       4078  2003-12-30 13:17  mschart\Demo.cpp

     文件      18089  2003-12-30 14:06  mschart\Demo.dsp

     文件        575  2003-12-30 14:06  mschart\Demo.dsw

     文件       1334  2003-12-30 13:17  mschart\Demo.h

     文件       5157  2010-06-11 09:09  mschart\Demo.plg

     文件      10819  2003-12-30 13:32  mschart\Demo.rc

     文件       1702  2003-12-30 13:17  mschart\DemoDoc.cpp

     文件       1453  2003-12-30 13:17  mschart\DemoDoc.h

     文件       6100  2003-12-30 14:03  mschart\DemoView.cpp

     文件       1822  2003-12-30 13:33  mschart\DemoView.h

     文件       2098  2003-12-30 13:19  mschart\font.cpp

     文件       1461  2003-12-30 13:19  mschart\font.h

     文件       2505  2003-12-30 13:17  mschart\MainFrm.cpp

     文件       1581  2003-12-30 13:17  mschart\MainFrm.h

     文件      15516  2003-12-30 13:19  mschart\mschart.cpp

     文件       4854  2003-12-30 13:19  mschart\mschart.h

     文件       4263  2003-12-30 13:17  mschart\ReadMe.txt

     文件        732  2003-12-30 13:32  mschart\Resource.h

     文件        206  2003-12-30 13:17  mschart\StdAfx.cpp

     文件       1054  2003-12-30 13:17  mschart\StdAfx.h

     文件       2567  2003-12-30 13:19  mschart\vcaxis.cpp

     文件       1620  2003-12-30 13:19  mschart\vcaxis.h

     文件        930  2003-12-30 13:19  mschart\vcaxisgrid.cpp

     文件       1242  2003-12-30 13:19  mschart\vcaxisgrid.h

     文件       1775  2003-12-30 13:19  mschart\vcaxisscale.cpp

     文件       1355  2003-12-30 13:19  mschart\vcaxisscale.h

     文件       2370  2003-12-30 13:19  mschart\vcaxistitle.cpp

     文件       1550  2003-12-30 13:19  mschart\vcaxistitle.h

     文件       1155  2003-12-30 13:19  mschart\vcbackdrop.cpp

............此处省略92个文件信息

评论

共有 条评论