optionsmisc.cpp

来自「Password Safe Password Safe is a passwor」· C++ 代码 · 共 54 行

CPP
54
字号
// OptionsMisc.cpp : implementation file//#include "stdafx.h"#include "passwordsafe.h"#include "corelib/PwsPlatform.h"#if defined(POCKET_PC)  #include "pocketpc/resource.h"#else  #include "resource.h"#endif#include "OptionsMisc.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// COptionsMisc property pageIMPLEMENT_DYNCREATE(COptionsMisc, CPropertyPage)COptionsMisc::COptionsMisc() : CPropertyPage(COptionsMisc::IDD){	//{{AFX_DATA_INIT(COptionsMisc)	//}}AFX_DATA_INIT}COptionsMisc::~COptionsMisc(){}void COptionsMisc::DoDataExchange(CDataExchange* pDX){	CPropertyPage::DoDataExchange(pDX);	//{{AFX_DATA_MAP(COptionsMisc)	DDX_Check(pDX, IDC_CONFIRMDELETE, m_confirmdelete);	DDX_Check(pDX, IDC_SAVEIMMEDIATELY, m_saveimmediately);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(COptionsMisc, CPropertyPage)	//{{AFX_MSG_MAP(COptionsMisc)		// NOTE: the ClassWizard will add message map macros here	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// COptionsMisc message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?