📄 inputpass.cpp
字号:
// InputPass.cpp : implementation file
//
#include "stdafx.h"
#include "TProd.h"
#include "InputPass.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInputPass dialog
CInputPass::CInputPass(CWnd* pParent /*=NULL*/)
: CDialog(CInputPass::IDD, pParent)
{
//{{AFX_DATA_INIT(CInputPass)
m_admin = _T("");
m_pass = _T("");
//}}AFX_DATA_INIT
}
void CInputPass::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInputPass)
DDX_Control(pDX, IDC_PASS, m_ppass);
DDX_Control(pDX, IDC_Admin, m_padmin);
DDX_Control(pDX, IDOK, m_pok);
DDX_Text(pDX, IDC_Admin, m_admin);
DDX_Text(pDX, IDC_PASS, m_pass);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CInputPass, CDialog)
//{{AFX_MSG_MAP(CInputPass)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInputPass message handlers
void CInputPass::OnOK()
{
// TODO: Add extra validation here
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -