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

📄 getpassdlg.cpp

📁 安全文件柜,使用CryptApi接口实现.
💻 CPP
字号:
// GetPassDlg.cpp : implementation file
//

#include "stdafx.h"
#include "文件保险箱.h"
#include "GetPassDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// GetPassDlg dialog


GetPassDlg::GetPassDlg(CWnd* pParent /*=NULL*/)
	: CDialog(GetPassDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(GetPassDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void GetPassDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(GetPassDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(GetPassDlg, CDialog)
	//{{AFX_MSG_MAP(GetPassDlg)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// GetPassDlg message handlers

void GetPassDlg::OnOK() 
{
	GetDlgItemText(IDC_EDIT_PASS,m_Pass);	
	CDialog::OnOK();
}

void GetPassDlg::OnCancel() 
{
 	m_Pass.Empty();
	CDialog::OnCancel();
}

⌨️ 快捷键说明

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