PropPageMFCPpg.cpp
上传用户:lc8096
上传日期:2007-01-02
资源大小:40k
文件大小:2k
源码类别:
ActiveX/DCOM/ATL
开发平台:
Visual C++
- // PropPageMFCPpg.cpp : Implementation of the CPropPageMFCPropPage property page class.
- #include "stdafx.h"
- #include "PropPageMFC.h"
- #include "PropPageMFCPpg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- IMPLEMENT_DYNCREATE(CPropPageMFCPropPage, COlePropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // Message map
- BEGIN_MESSAGE_MAP(CPropPageMFCPropPage, COlePropertyPage)
- //{{AFX_MSG_MAP(CPropPageMFCPropPage)
- // NOTE - ClassWizard will add and remove message map entries
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // Initialize class factory and guid
- IMPLEMENT_OLECREATE_EX(CPropPageMFCPropPage, "PROPPAGEMFC.PropPageMFCPropPage.1",
- 0xa56a23d4, 0x79af, 0x11d2, 0x8d, 0xc4, 0xc3, 0x6d, 0x15, 0x2e, 0x46, 0xfe)
- /////////////////////////////////////////////////////////////////////////////
- // CPropPageMFCPropPage::CPropPageMFCPropPageFactory::UpdateRegistry -
- // Adds or removes system registry entries for CPropPageMFCPropPage
- BOOL CPropPageMFCPropPage::CPropPageMFCPropPageFactory::UpdateRegistry(BOOL bRegister)
- {
- if (bRegister)
- return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
- m_clsid, IDS_PROPPAGEMFC_PPG);
- else
- return AfxOleUnregisterClass(m_clsid, NULL);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CPropPageMFCPropPage::CPropPageMFCPropPage - Constructor
- CPropPageMFCPropPage::CPropPageMFCPropPage() :
- COlePropertyPage(IDD, IDS_PROPPAGEMFC_PPG_CAPTION)
- {
- //{{AFX_DATA_INIT(CPropPageMFCPropPage)
- m_nRadio = 0;
- //}}AFX_DATA_INIT
- }
- /////////////////////////////////////////////////////////////////////////////
- // CPropPageMFCPropPage::DoDataExchange - Moves data between page and properties
- void CPropPageMFCPropPage::DoDataExchange(CDataExchange* pDX)
- {
- //{{AFX_DATA_MAP(CPropPageMFCPropPage)
- DDX_Radio(pDX, IDC_RADIO1, m_nRadio);
- //}}AFX_DATA_MAP
- DDP_PostProcessing(pDX);
- }
- /////////////////////////////////////////////////////////////////////////////
- // CPropPageMFCPropPage message handlers