91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

使用GDI+繪制的柱狀圖,可以學習使用,也可以直接使用,帶數據顯示。數據從文件讀取,具體看代碼。

資源截圖

代碼片段和文件信息

//?BandChart.cpp?:?Defines?the?class?behaviors?for?the?application.
//

#include?“stdafx.h“
#include?“BandChart.h“
#include?“BandChartDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
//?CBandChartApp

BEGIN_MESSAGE_MAP(CBandChartApp?CWinApp)
//{{AFX_MSG_MAP(CBandChartApp)
//?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()

/////////////////////////////////////////////////////////////////////////////
//?CBandChartApp?construction

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

/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CBandChartApp?object

CBandChartApp?theApp;

/////////////////////////////////////////////////////////////////////////////
//?CBandChartApp?initialization

BOOL?CBandChartApp::InitInstance()
{
AfxEnableControlContainer();
????GdiplusStartup(&m_pGdiToken&m_gdiplusStartupInputNULL);
//?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

CBandChartDlg?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;
}

int?CBandChartApp::ExitInstance()?
{
//?TODO:?Add?your?specialized?code?here?and/or?call?the?base?class
GdiplusShutdown(m_pGdiToken);
return?CWinApp::ExitInstance();
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件?????116276??2011-08-04?15:37??BandChart.aps

?????文件???????1518??2011-08-04?11:27??BandChart.h

?????文件???????1446??2011-08-04?13:50??BandChartDlg.h

?????文件???????1936??2010-08-26?16:11??GDIOperation.h

?????文件???????2564??2011-08-04?15:14??MyVertBandChart.h

?????文件????????957??2011-08-04?15:37??resource.h

?????文件???????1184??2011-08-04?11:26??StdAfx.h

?????文件???????2345??2011-08-04?11:21??BandChart.cpp

?????文件???????5519??2011-08-04?15:37??BandChartDlg.cpp

?????文件???????9564??2011-08-04?11:41??GDIOperation.cpp

?????文件???????8558??2011-08-04?15:45??MyVertBandChart.cpp

?????文件????????211??2011-08-04?10:58??StdAfx.cpp

?????文件???????1159??2011-08-04?15:17??BandChart.clw

?????文件????????252??2011-08-04?16:09??BandChart.plg

?????文件??????50176??2011-08-04?18:00??BandChart.ncb

?????文件??????52736??2011-08-04?18:00??BandChart.opt

?????文件???????5043??2011-08-04?18:00??BandChart.dsp

?????文件????????543??2011-08-04?10:58??BandChart.dsw

?????文件???????5731??2011-08-04?15:37??BandChart.rc

?????文件????1503232??2000-10-24?23:12??gdiplus.dll

?????文件???????4206??2011-08-04?14:14??IMG\Band-1.png

?????文件???????4330??2011-08-04?14:38??IMG\Band-2.png

?????文件???????2811??2011-08-04?14:41??IMG\BANDICON-1.png

?????文件???????8096??2011-08-04?14:40??IMG\BANDLOGO-1.png

?????文件???????2806??2011-08-04?15:18??IMG\橫線-1.png

?????文件???????2801??2011-08-04?15:18??IMG\豎線-1.png

?????文件??????60947??2011-08-04?15:18??IMG\背景-1.png

?????文件???????4877??2011-08-03?11:17??IMG\背景-2.png

?????文件???????1078??2011-08-04?10:58??res\BandChart.ico

?????文件????????401??2011-08-04?10:58??res\BandChart.rc2

............此處省略8個文件信息

評論

共有 條評論