QuakeGod
2023-05-19 418cb35b936f21415807a2bcc21b2d75934bd4d2
提交 | 用户 | age
65f713 1 #pragma once
Q 2
3
4 // CPropInputCfg 对话框
5
6 class CPropInputCfg : public CDialogEx
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 };