📄 actvoiceppg.cpp
字号:
// ActVoicePpg.cpp : Implementation of the CActVoicePropPage property page class.
#include "stdafx.h"
#include "ActVoice.h"
#include "ActVoicePpg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
IMPLEMENT_DYNCREATE(CActVoicePropPage, COlePropertyPage)
/////////////////////////////////////////////////////////////////////////////
// Message map
BEGIN_MESSAGE_MAP(CActVoicePropPage, COlePropertyPage)
//{{AFX_MSG_MAP(CActVoicePropPage)
// 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(CActVoicePropPage, "ACTVOICE.ActVoicePropPage.1",
0x63a7e2bd, 0xd047, 0x11d5, 0xa4, 0x82, 0, 0x10, 0xa4, 0xf2, 0x2a, 0xd8)
/////////////////////////////////////////////////////////////////////////////
// CActVoicePropPage::CActVoicePropPageFactory::UpdateRegistry -
// Adds or removes system registry entries for CActVoicePropPage
BOOL CActVoicePropPage::CActVoicePropPageFactory::UpdateRegistry(BOOL bRegister)
{
if (bRegister)
return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
m_clsid, IDS_ACTVOICE_PPG);
else
return AfxOleUnregisterClass(m_clsid, NULL);
}
/////////////////////////////////////////////////////////////////////////////
// CActVoicePropPage::CActVoicePropPage - Constructor
CActVoicePropPage::CActVoicePropPage() :
COlePropertyPage(IDD, IDS_ACTVOICE_PPG_CAPTION)
{
//{{AFX_DATA_INIT(CActVoicePropPage)
// NOTE: ClassWizard will add member initialization here
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA_INIT
}
/////////////////////////////////////////////////////////////////////////////
// CActVoicePropPage::DoDataExchange - Moves data between page and properties
void CActVoicePropPage::DoDataExchange(CDataExchange* pDX)
{
//{{AFX_DATA_MAP(CActVoicePropPage)
// NOTE: ClassWizard will add DDP, DDX, and DDV calls here
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA_MAP
DDP_PostProcessing(pDX);
}
/////////////////////////////////////////////////////////////////////////////
// CActVoicePropPage message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -