#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();
|
};
|