zxd
2023-09-28 aac3b319965967f465881f3a8961904d57b6f337
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once
 
 
// CDialogStatusShow 对话框
 
class CDialogStatusShow : public CDialogEx
{
    DECLARE_DYNAMIC(CDialogStatusShow)
 
public:
    CDialogStatusShow(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CDialogStatusShow();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_STATUS_SHOW };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    CListCtrl m_liststatus1;
    virtual BOOL OnInitDialog();
    afx_msg void OnClose();
    afx_msg void OnTimer(UINT_PTR nIDEvent);
    int ShowParams();
    int GetParams();
    int DoMonitor();
    int UpdateDisplay();
    afx_msg void OnBnClickedButtonClearStatistics();
};