exporttext.cpp

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

CPP
50
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?