📄 optionsmisc.cpp
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -