optpropsheet.cpp
来自「文件加密的过滤驱动程序源代码.」· C++ 代码 · 共 46 行
CPP
46 行
// OptPropSheet.cpp : implementation file
//
#include "stdafx.h"
#include "resource.h"
#include "FileGuardApp.h"
#include "OptPropSheet.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COptPropSheet
IMPLEMENT_DYNAMIC(COptPropSheet, CPropertySheet)
COptPropSheet::COptPropSheet(CWnd* pWndParent)
: CPropertySheet(IDS_PROPSHT_CAPTION1, pWndParent)
{
m_psh.dwFlags |=PSH_NOAPPLYNOW;
AddPage(&m_Page1);
AddPage(&m_Page2);
AddPage(&m_Page3);
}
COptPropSheet::~COptPropSheet()
{
theApp.WriteProfile();
}
BEGIN_MESSAGE_MAP(COptPropSheet, CPropertySheet)
//{{AFX_MSG_MAP(COptPropSheet)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COptPropSheet message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?