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
| #pragma once
| #include "CMyPropPage.h"
|
| // CPropInputCfg 对话框
|
| class CPropInputCfg : public CMyPropPage
| {
| DECLARE_DYNAMIC(CPropInputCfg)
|
| public:
| CPropInputCfg(CWnd* pParent = nullptr); // 标准构造函数
| virtual ~CPropInputCfg();
|
| // 对话框数据
| #ifdef AFX_DESIGN_TIME
| enum { IDD = IDD_PROP_INPUT_CFG };
| #endif
|
| protected:
| virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
| DECLARE_MESSAGE_MAP()
| public:
| int nInputNum = 16;
| int GetData();
| int SetData();
| int ShowParams();
| int GetParams();
| CComboBox m_combo_input_filter[16];
| };
|
|