#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]; };