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

📄 optionsdisplay.cpp

📁 Password Safe Password Safe is a password database utility. Users can keep their passwords securely
💻 CPP
字号:
// OptionsDisplay.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 "OptionsDisplay.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// COptionsDisplay property pageIMPLEMENT_DYNCREATE(COptionsDisplay, CPropertyPage)COptionsDisplay::COptionsDisplay() : CPropertyPage(COptionsDisplay::IDD){	//{{AFX_DATA_INIT(COptionsDisplay)	//}}AFX_DATA_INIT}COptionsDisplay::~COptionsDisplay(){}void COptionsDisplay::DoDataExchange(CDataExchange* pDX){	CPropertyPage::DoDataExchange(pDX);	//{{AFX_DATA_MAP(COptionsDisplay)	DDX_Check(pDX, IDC_ALWAYSONTOP, m_alwaysontop);	DDX_Check(pDX, IDC_DEFPWSHOWINLIST, m_pwshowinlist);	DDX_Check(pDX, IDC_DEFPWSHOWINEDIT, m_pwshowinedit);#if defined(POCKET_PC)	DDX_Check(pDX, IDC_DCSHOWSPASSWORD, m_dcshowspassword);#endif	DDX_Check(pDX, IDC_DEFPWUSESYSTRAY, m_usesystemtray);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(COptionsDisplay, CPropertyPage)	//{{AFX_MSG_MAP(COptionsDisplay)		// NOTE: the ClassWizard will add message map macros here	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// COptionsDisplay message handlers

⌨️ 快捷键说明

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