📄 pagechart.h
字号:
#pragma once
#include "ChartWnd.h"
#include "afxcmn.h"
// CPageChart 对话框
class CPageChart : public CDialog
{
DECLARE_DYNAMIC(CPageChart)
public:
CPageChart(CWnd* pParent = NULL); // 标准构造函数
virtual ~CPageChart();
// 对话框数据
enum { IDD = IDD_PAGE_CHART };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedCancel();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
public:
CChartWnd m_ChartWnd[4]; // 0 System DWORD Read, 1 System DWORD Write, 2 DMA-Based Burst Read, 3 DMA-Based Burst Write
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnBnClickedBtnChartStart();
CProgressCtrl m_prgChartRefresh;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -