| 1234567891011121314151617181920212223242526272829303132333435 |
- #pragma once
- // DataDictView 对话框
- class CDmsDoc;
- class DictView : public CDialogEx
- {
- DECLARE_DYNAMIC(DictView)
- public:
- DictView(CWnd* pParent = nullptr); // 标准构造函数
- virtual ~DictView();
- // 对话框数据
- #ifdef AFX_DESIGN_TIME
- enum { IDD = IDD_DLG_DICT_VIEW };
- #endif
- public:
- CDmsDoc *GetDocument();
- CListCtrl m_ListCtrl_Dict;
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- virtual BOOL OnInitDialog();
- void InitDictList();
- afx_msg void OnBnClickedBtnDictAdd();
- afx_msg void OnNMDblclkListDict(NMHDR *pNMHDR, LRESULT *pResult);
- };
|