MyPropertyPage1.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:
书籍源码
开发平台:
Visual C++
- // MyPropertyPage1.cpp : implementation file
- //
- #include "stdafx.h"
- #include "resource.h"
- #include "MyPropertyPage1.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNCREATE(CMyPropertyPage1, CPropertyPage)
- IMPLEMENT_DYNCREATE(CMyPropertyPage2, CPropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertyPage1 property page
- CMyPropertyPage1::CMyPropertyPage1() : CPropertyPage(CMyPropertyPage1::IDD)
- {
- //{{AFX_DATA_INIT(CMyPropertyPage1)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- CMyPropertyPage1::~CMyPropertyPage1()
- {
- }
- void CMyPropertyPage1::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CMyPropertyPage1)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CMyPropertyPage1, CPropertyPage)
- //{{AFX_MSG_MAP(CMyPropertyPage1)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CMyPropertyPage2 property page
- CMyPropertyPage2::CMyPropertyPage2() : CPropertyPage(CMyPropertyPage2::IDD)
- {
- //{{AFX_DATA_INIT(CMyPropertyPage2)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- CMyPropertyPage2::~CMyPropertyPage2()
- {
- }
- void CMyPropertyPage2::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CMyPropertyPage2)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CMyPropertyPage2, CPropertyPage)
- //{{AFX_MSG_MAP(CMyPropertyPage2)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()