提交 | 用户 | age
|
418cb3
|
1 |
#pragma once
|
Q |
2 |
#include "CMyPropPage.h"
|
|
3 |
|
|
4 |
// CPropInputCfg 对话框
|
|
5 |
|
|
6 |
class CPropInputCfg : public CMyPropPage
|
|
7 |
{
|
|
8 |
DECLARE_DYNAMIC(CPropInputCfg)
|
|
9 |
|
|
10 |
public:
|
|
11 |
CPropInputCfg(CWnd* pParent = nullptr); // 标准构造函数
|
|
12 |
virtual ~CPropInputCfg();
|
|
13 |
|
|
14 |
// 对话框数据
|
|
15 |
#ifdef AFX_DESIGN_TIME
|
|
16 |
enum { IDD = IDD_PROP_INPUT_CFG };
|
|
17 |
#endif
|
|
18 |
|
|
19 |
protected:
|
|
20 |
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
21 |
|
|
22 |
DECLARE_MESSAGE_MAP()
|
|
23 |
public:
|
|
24 |
int nInputNum = 16;
|
|
25 |
int GetData();
|
|
26 |
int SetData();
|
|
27 |
int ShowParams();
|
|
28 |
int GetParams();
|
|
29 |
CComboBox m_combo_input_filter[16];
|
|
30 |
};
|