LAPTOP-SNT8I5JK\Boounion
2024-11-13 c36c5060e2ecdbea56dc72bf576b4b19fca29ffa
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
#pragma once
#include "CBaseView.h"
 
 
// CRemoteEqUnitView 对话框
 
class CRemoteEqUnitView : public CBaseView
{
    DECLARE_DYNAMIC(CRemoteEqUnitView)
 
public:
    CRemoteEqUnitView(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CRemoteEqUnitView();
 
private:
    COLORREF m_crBkgnd;
    HBRUSH m_hbrBkgnd;
    IObserver* m_pObserver;
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_COMPONENT_REMOTE_EQ_UNIT };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
    afx_msg void OnDestroy();
};