本控件用于绘制饼图,其为从CWnd派生的CPieChartCtrl,参见下图。
使用步骤如下:
1. 使用MS Visual C++对话框编辑器将定制控件放置到对话框中,并输入PIE_CHART_CTRL作为类名。
2. 在头文件中增加CPieChartCtrl类成员
#include "PieChartCtrl.h" ... CPieChartCtrl m_wndChart;
3. 在InitDialog()中调用下面函数:
m_wndChart.SubclassDlgItem(IDC_PIECHART1, this); //IDC_PIECHART1 is the control ID
4. 使用下面函数来编辑饼图:
// SetTitle(CString) - Set the chart title text m_wndChart.SetTitle("Chart Title"); // Reset() - Reset the chart and delete all pieces m_wndChart.Reset(); // AddPiece(COLORREF colorBack, COLORREF colorText, // int nAngle, int strInfo = ""); // Add one piece into the chart m_wndChart.AddPiece(colorBack, colorText, nAngle, strInfo);
>>> DOWN !!! >>>下载源代码及演示程序