提交 | 用户 | age | ||
418cb3 | 1 | #pragma once |
Q | 2 | #include <afxdialogex.h> |
3 | class CMyPropPage : | |
4 | public CDialogEx | |
5 | { | |
6 | public: | |
7 | CMyPropPage() :CDialogEx() {}; | |
8 | CMyPropPage(UINT nTemplate, CWnd * pWnd = (CWnd *)0) :CDialogEx(nTemplate, pWnd) {}; | |
9 | virtual ~CMyPropPage() {}; | |
10 | virtual int SetData() { return 0; }; | |
11 | virtual int GetData() { return 0; }; | |
12 | void * DataPtr = nullptr; | |
13 | }; | |
14 |