QuakeGod
2023-09-05 df03213660361b1c771f0a3f21b6ddaeaef7763a
提交 | 用户 | 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