📄 statqueryview.h
字号:
//{{AFX_INCLUDES()
#include "mschart.h"
//}}AFX_INCLUDES
#if !defined(AFX_STATQUERYVIEW_H__AB4FC9B1_901C_4879_9D41_E70B455DC0BF__INCLUDED_)
#define AFX_STATQUERYVIEW_H__AB4FC9B1_901C_4879_9D41_E70B455DC0BF__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// StatQueryView.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CStatQueryView form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
class CStatQueryView : public CFormView
{
protected:
CStatQueryView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CStatQueryView)
// Form Data
public:
//{{AFX_DATA(CStatQueryView)
enum { IDD = IDD_STAT_QUERY_FORM };
CMSChart m_chartTotal;
CMSChart m_chartIn;
CMSChart m_chartExp;
//}}AFX_DATA
// Attributes
public:
//设置MSChart1的显示数据
void SetTotalChartData();
//按行向MSChart中插入数据
void SetChartRowData(CMSChart& chart,int row,double money);
//向收入MSChart控件中添加显示数据
void SetInChartData();
//向支出MSChart控件中添加显示数据
void SetExpChartData();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CStatQueryView)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnDraw(CDC* pDC);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CStatQueryView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CStatQueryView)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STATQUERYVIEW_H__AB4FC9B1_901C_4879_9D41_E70B455DC0BF__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -