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

📄 exporttext.cpp

📁 Password Safe Password Safe is a password database utility. Users can keep their passwords securely
💻 CPP
字号:
// ExportText.cpp : implementation file//#include "stdafx.h"#include "passwordsafe.h"#include "ExportText.h"#ifdef _DEBUG#define new DEBUG_NEW#undef THIS_FILEstatic char THIS_FILE[] = __FILE__;#endif/////////////////////////////////////////////////////////////////////////////// CExportTextDlg dialogCExportTextDlg::CExportTextDlg(CWnd* pParent /*=NULL*/)	: CDialog(CExportTextDlg::IDD, pParent){	//{{AFX_DATA_INIT(CExportTextDlg)	m_exportTextPassword = _T("");	//}}AFX_DATA_INIT}void CExportTextDlg::DoDataExchange(CDataExchange* pDX){	CDialog::DoDataExchange(pDX);	//{{AFX_DATA_MAP(CExportTextDlg)	DDX_Text(pDX, IDC_EXPORT_TEXT_PASSWORD, m_exportTextPassword);	//}}AFX_DATA_MAP}BEGIN_MESSAGE_MAP(CExportTextDlg, CDialog)	//{{AFX_MSG_MAP(CExportTextDlg)	//}}AFX_MSG_MAPEND_MESSAGE_MAP()/////////////////////////////////////////////////////////////////////////////// CExportTextDlg message handlersvoid CExportTextDlg::OnOK() {  // just update the password for checking  UpdateData();  CDialog::OnOK();}

⌨️ 快捷键说明

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