⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 optpropsheet.cpp

📁 文件加密的过滤驱动程序源代码.
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -