123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- // MyPropertyPages.h : header file
- //
- #ifndef __MYPROPERTYPAGES_H__
- #define __MYPROPERTYPAGES_H__
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertyPage1 dialog
- #include "ResizablePageEx.h"
- class CMyPropertyPage1 : public CResizablePageEx
- {
- DECLARE_DYNCREATE(CMyPropertyPage1)
- // Construction
- public:
- CMyPropertyPage1();
- ~CMyPropertyPage1();
- // Dialog Data
- //{{AFX_DATA(CMyPropertyPage1)
- enum { IDD = IDD_PROPPAGE1 };
- // NOTE - ClassWizard will add data members here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_DATA
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CMyPropertyPage1)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- public:
- virtual BOOL OnSetActive();
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CMyPropertyPage1)
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertyPage2 dialog
- class CMyPropertyPage2 : public CResizablePageEx
- {
- DECLARE_DYNCREATE(CMyPropertyPage2)
- // Construction
- public:
- CMyPropertyPage2();
- ~CMyPropertyPage2();
- // Dialog Data
- //{{AFX_DATA(CMyPropertyPage2)
- enum { IDD = IDD_PROPPAGE2 };
- CListBox m_ctlEdit1;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CMyPropertyPage2)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- public:
- virtual BOOL OnSetActive();
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CMyPropertyPage2)
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertyPage3 dialog
- class CMyPropertyPage3 : public CResizablePageEx
- {
- DECLARE_DYNCREATE(CMyPropertyPage3)
- // Construction
- public:
- CMyPropertyPage3();
- ~CMyPropertyPage3();
- // Dialog Data
- //{{AFX_DATA(CMyPropertyPage3)
- enum { IDD = IDD_PROPPAGE3 };
- // NOTE - ClassWizard will add data members here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_DATA
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CMyPropertyPage3)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- public:
- virtual BOOL OnSetActive();
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CMyPropertyPage3)
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #endif // __MYPROPERTYPAGES_H__
|