📄 modpswd.cpp
字号:
// ModPswd.cpp : implementation file
//
#include "stdafx.h"
#include "xiahua.h"
#include "ModPswd.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CModPswd dialog
CModPswd::CModPswd(CWnd* pParent /*=NULL*/)
: CDialog(CModPswd::IDD, pParent)
{
//{{AFX_DATA_INIT(CModPswd)
m_strConfirps = _T("");
m_strFormerps = _T("");
m_strNewps = _T("");
m_strUser = _T("administrator");
//}}AFX_DATA_INIT
}
void CModPswd::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CModPswd)
DDX_Text(pDX, IDC_CONFIRPS, m_strConfirps);
DDX_Text(pDX, IDC_FORMERPS, m_strFormerps);
DDX_Text(pDX, IDC_NEWPS, m_strNewps);
DDX_Text(pDX, IDC_USER, m_strUser);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CModPswd, CDialog)
//{{AFX_MSG_MAP(CModPswd)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CModPswd message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -