pagechart.h
来自「PCI的一个测试程序,可以测试PCI driver和BOARD的功能.」· C头文件 代码 · 共 35 行
H
35 行
#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 + =
减小字号Ctrl + -
显示快捷键?